Programming (Year 12)
Lists
What will the following code snippet output? print([1, 2, 3] + [4, 5, 6])
[1, 2, 3, 4, 5, 6]
[1, 2, 3][4, 5, 6]
TypeError
[1, 2, 3, 4][5, 6]