heidihaskins88 heidihaskins88 24-03-2021 Computers and Technology contestada 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?