A program that will: Ask the user for the number of days that he or she has worked. (3 points) Declare an array that will hold the number of hours worked for each day. (2 points) Use a loop to ask the user for the numbers of hours worked each day. Those should be stored in the array. (5 points) Using another loop, calculate the average of numbers of hours worked by traversing the array. (5 points)