-- Homework 22, challenge: Reverse a list. -- -- Define `local function reverse(list)` 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: lua exercises/22/homework/04-reverse.lua -- Your code goes here: