public class ArrayPracticeClient2 { public static void main (String[] args) { // get an integer value, num, from user. Make sure value is // between 5 and 50 inclusive. // use num to set up an array of integers // Fill the array with random values of dice faces (ie, 1-6) // Calculate the average of the array values (this should be a double) // Calculate how many of the values in the array are strictly larger // than the average // FIRST, Print out the average of the array. // SECOND, Print out all values in the array (in a EASILY READABLE way...) System.out.print("\n\n"); } }