Create an application that calculates the grades of a group of students. The program must follow these specifications: - You need to declare 2 arrays: 1 single String array to contain the name of the students and the second a double two-dimensional to hold the grades of the students. The program must allow the user to enter 5 students with 5 grades. The program must print names and grades. The program must use 2 decimal formal in the output. The program must calculate the average grade per student and print it at the end of each row. Hint suggestion: Make the grade array with one more column to hold the average. Use the same column to hold the calculated average.