Assignment
Create a project called Inlab10 and make a class called Data. The only instance variable in Data is a 2D int array. Make the constructor take the number of rows and columns and create the array. Make a method that prints the array. Make a method that fills the array with random ints between and including 0 and 9. Make a method that finds the sum of each row in the array and returns those values in an array (i.e. an array of row sums). Do not print the sums, return an array of them. Make a method that checks if any column has the consecutive values '1 2 3' anywhere in that column. If some column does, return true. Return false if not. Make a Driver that does some simple tests of your class.