# Homework 22, challenge: Reverse a list. # # Define def reverse(lst): that returns a NEW list with # the items in reverse order. The original list must not change. # Test with a list of strings; print before and after. # # Run with: python exercises/22/homework/04-reverse.py # Your code goes here: