Let's learn Higher Order Functions!
Drag and drop the options to the blanks to complete the program to
form a function that takes in a function as parameter.
The goal of this function will be to take a list of strings, a
string function and a list function as arguments.
Then it will apply the string function to each string in the
list and apply the list function to the whole list.
Input = ['hello', 'this', 'is', 'a', 'list']
Output = ['A', 'HELLO', 'IS', 'LIST', 'THIS']