Question
Write down a Java program that creates an array of integers that called myArray. myArray be able to be of any size, with arbitrary values between 1 and 100 in each of its elements. Your program should traverse myArray, displaying the values in the array.
It must display and remember what the largest value was, and what the smallest value was. It has to display the average of the values in the array, ignoring all instances of largest value and all instances of the smallest value. It should also maintain track of a value that appears most often; display what that value was, and how often that value appeared in an array. You could simplify by filling myArray with values such that only one value appears most often.