Given a list of strings, write a function to return a new list containing only the strings that have vowels in them.
['apple', '123', 'banana', 'xylophone', 'cat']
['apple', 'banana', 'xylophone']
Bot