The reversed constructor takes a sequence and builds a sequence-like object representing the reversal of that object; the resulting reversed object can be iterated over once. For example,

for i in reversed(range(10)):
    print(i)

prints out the integers from nine down to zero.

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