What is in values after the following code segment executes?

values = [1, 2, 3]
values = values * 4
Group of answer choices

[4, 8, 12]

[1, 2, 3, 4]

[1, 2, 3, 1, 2, 3, 1, 2, 3, 1, 2, 3]

Nothing because a runtime error occurs