create an array of 1000 integers. 2. populate the array with random numbers between 1 and 100. 3. calculate and print out the average of the numbers in the array. be accurate to within two decimal points. for example 23.45. do this work in a method. in other words have a method called calcaverage or something like that. pass the array to it and have the method calculate and return the average. so your main method can print the average after this number is returned from your calcaverage method. 4. count the number of times each number (1-100) appears in the array and print that information.