Checkpoint 9.17.1.
Create a function
password_maker(word_list) that takes a list of words, word_list and returns a string with the first and last character of each word in a list. For example, password_maker("show", "me", "the", "money") would return swmetemy.
