Given a list of strings, return a new list containing only the strings that have length greater than 5.
['apple', 'banana', 'kiwi', 'pineapple', 'orange']
['banana', 'pineapple', 'orange']
Bot