Consider the following code:


values = []


for i in range(5):

values.append(int(input("Next number: ")))


print(values)


If the line print(len(values)) is appended to this code, what is output by that print(len(values)) line?