The sorted function takes one argument, a collection, and returns a sorted list containing the elements of that collection. For example, sorted((7, -1, 2)) is [-1, 2, 7].

Fill in the placeholders so that the actual outputs match the expected outputs.