Given const list = [1], what happens when list.push(2) is called?
A TypeError occurs because every const value is deeply immutable
The call is ignored and list remains [1]
The call succeeds and list becomes [1, 2]✓Correct answer
A new binding named list is created
Explanation
The const restriction prevents assigning a different value to the list binding, but push changes the existing Array object. The call is therefore allowed and the array becomes [1, 2]; const does not recursively freeze held objects.