What is the output of the following code?
numbers = [17, 123] numbers[1] = 5 print(numbers)
A) [17, 5]
[17, 5]
B) [5, 123]
[5, 123]
C) [17, 123]
[17, 123]
D) [5, 17]
[5, 17]