After `items = [3, 1, 2]` and `result = items.sort()`, what are `items` and `result`?
Explanation
The method rearranges the existing list into sorted order and follows the in-place-method convention of returning `None`. Expecting `result` to hold a sorted list confuses `list.sort` with the separate `sorted` function.