Write a function that takes a list of strings and returns a new list with only the strings that have a length of 5 or more characters.
['apple', 'banana', 'kiwi', 'orange', 'grapefruit']
['banana', 'orange', 'grapefruit']
Bot