Create a function that takes an array of increasing letters and return the missing letter.
missingLetter(["a", "b", "c", "e", "f", "g"]) ➞ "d"
missingLetter(["O", "Q", "R", "S"]) ➞ "P"
missingLetter(["t", "u", "v", "w", "x", "z"]) ➞ "y"
missingLetter(["m", "o"]) ➞ "n"