Given a letter and an array of words, return whether the letter does not appear in any of the words.
forbiddenLetter('r', ["rock", "paper", "scissors"]) ➞ false
forbiddenLetter('a', ["spoon", "fork", "knife"]) ➞ true
forbiddenLetter('m', []) ➞ true