What is the output of this Python code?
array : list = [4, 2] array[2] = 5 print(array)
[4, 2]
[4, 2, 5]
Exception
Syntax Error