Exercise
Fill Array: Write method fillArray() that takes three integers: min, max, and returns an array of size, having random integers with values between min and max. Write method fillTwoDArray() that takes four integers: rows, cols, min, and max. It returns a 2D array with the specified size and random values between min and max. You can use this method in any of the subsequent programs to generate arrays to be used to test your methods.