Create a function that accepts a list of two strings and checks if the letters in the second string are present in the first string.
letter_check(["trances", "nectar"]) ➞ True
letter_check(["compadres", "DRAPES"]) ➞ True
letter_check(["parses", "parsecs"]) ➞ False