Challenge 3: Reverse a List
In this challenge, your task is to reverse the elements in a list.
We'll cover the following...
Problem Statement
Implement a reverse
function that receives a list
as a parameter and returns the reverse of that list. You ...