What is the output when the following code is entered into a Python program interpreter?

[1,2,4,5] + [3,6]
  • [1,2,3,4,5,6]
  • [1,2,4,5,3,6]
  • [21]
  • [12]+[9]