Implement a class named RandNum. The class should have a 5x5 2D array of 25 integers. The constructor should use the random() function to generate a random number in the range of 1 to 100 for each element in the array. Implement a method to calculate the minimum, maximum and average of the 25 values. Implement a method to display the values of the array, minimum, maximum and average of the 25 values.

Question: Implement a class named RandNum. The class should have a 5x5 2D array of 25 integers. The constructor should use the random() function to generate a random number in the range of 1 to 100 for each element in the array. Implement a method to calculate the minimum, maximum and average of the 25 values. Implement a method to display the values of the array, minimum, maximum and average of the 25 values. Model Answer: Java public class RandNum { int minValue; int maxValue; int sum; double average; int[][] arr = new int[5][5]; public RandNum(){ int max = 100; int min = 1; int range = max - min + 1; for (int i = 0; i < 5; i++) { for (int j = 0; j < 5; j++) { arr[i][j] = (int)(Math.random() * range) + min; } } } public void calculateValues(){ maxValue = arr[0][0]; for (int j = 0; ...