What will this line of code do? numpy.average(quiz_scores)

create a variable called quiz_scores to hold the average
average an array called quiz scores
add the variable average to the array called quiz_scores
add the variable quiz scores to the average

This line of code will calculate the average of the array called "quiz_scores" using the numpy library.