Create a function that takes two numbers num1, num2, and a list lst and returns a list containing all the numbers in lst greater than num1 and less than num2.
list_between(3, 8, [1, 5, 95, 0, 4, 7]) ➞ [5, 4, 7]
list_between(1, 10, [1, 10, 25, 8, 11, 6]) ➞ [8, 6]
list_between(7, 32, [1, 2, 3, 78]) ➞ []
N/A