The question asked me to write a program that reads 5 numbers, computes the max and finds out how many numbers are above the max. Please help!!!!!!import java.util.Scanner; public class Max_Number { public static void main(String[] args) { Scanner input = new Scanner(System.in); double[] myList = new double[6]; double max = myList[0]; for (int i = 1; i < myList.length; i++) { if (myList[i] > max) max = myList[i]; System.out.print("Enter a number: "); myList[i] = input.nextDouble(); } int countGreater = 0; for (int i = 0; i <myList.length; i++) { if(myList[i] > max) countGreater++; } System.out.println("The max is " + max); System.out.println("The number of values greater than the max is " + countGreater); } }