Given a list of strings, return a new list containing only the strings with an odd length.
['apple', 'banana', 'kiwi', 'orange', 'grape']
['kiwi', 'orange']
Bot