- Write a program that lets the user enter grades (numeric)
- Let the user keep entering grades until they enter a -1
- Add each grade entered to an array
- Create a function that average the grades that will take the array of grades as the parameter and RETURNS the average of the grades.
- Notify the user with an alert of what their average grade is. Calculate the average by adding up all the numbers and dividing by the number of values entered..