Given a list of strings, write a function to return a new list containing only the strings that have length greater than or equal to 5.
['apple', 'banana', 'kiwi', 'orange', 'pear']
['apple', 'banana', 'orange']
Bot