A list starts as `items = [1]`. What is its value after `items.extend([2, 3])`?
Explanation
The iterable supplies two successive elements, and `extend` appends each of them to the existing list. Treating the argument as one nested element confuses this method with `append`.