Given the following code:numbers = [ 1, 2, 3, 4, 5 ]print (c…
Given the following code:numbers = print (calculateAverageValue (numbers))def calculateAverageValue (items): num_items = len (items) average = 0 total = 0 for item in items: total = total + item average = total / num_items return averageWhat is printed to the screen?