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