Create an application called ArrayMethodDemo that prompts a user for 10 integers and stores them in an array.
The application should call the five methods listed below:
info> Each of the five methods should be void, they should not return any values.
(1) display(int[]) - display all the integers
(2) displayReverse(int[]) - display all the integers in reverse order
(3) displaySum(int[]) - display the sum of the integers
(4) displayLessThan(int[], int) - display all values less than 12 or a message if none are less than 12
(5) displayHigherThanAverage(int[]) - display all values that are higher than the calculated average value