Write a java program called AverageMark.java. This program should allow the user to enter any number of marks and then display the minimum, maximum & average mark. After user completed the input of marks, the program should pass the array to the respective methods called minMark, maxMark and averageMark. The minMark method would find and return the minimum mark, the maxMark method should find and return the maximum mark and the averageMark should calculate and return the average to the main method. You need to format the average to 3 decimal places.