Write a Java program that creates an array of integers (called myArray). myArray can 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 should display and remember what the largest value was, and what the smallest value was. It should display the average of the values in the array, ignoring all instances of the largest value and all instances of the smallest value. It should also keep track of a value that appears most often, display what that value was, and how often that value appeared in the array. You may simplify by filling myArray with values such that only one value appears most often.