Create a function that takes a list and returns a string.
num_to_google(["12213467"]) ➞ "Google."
num_to_google(["12213467", "321"]) ➞ "Google.log"
num_to_google(["12213467", "321", "122906"]) ➞ "Google.log"
num_to_google(["15", "2502", "15", 3545]) ➞ "GOOGLE"
num_to_google(["15", "2502", "15", 35, 45]) ➞ "GOOGLE"
num_to_google([15, 202, 1, 3, 4]) ➞ "Google"
N/A