After `items = [3, 1, 2]` and `result = sorted(items)`, which state is correct?
Explanation
The built-in function constructs a new sorted list for `result` and leaves its input list in the original order. Saying the input is rearranged applies the behavior of `items.sort()` to the different `sorted` operation.