Create a function that accepts an array of two strings and checks if the letters in the second string are present in the first string.
letterCheck(["trances", "nectar"]) ➞ true
letterCheck(["compadres", "DRAPES"]) ➞ true
letterCheck(["parses", "parsecs"]) ➞ false