Given a list of strings, return a new list containing only the strings with a length of 3 or more.
['hello', 'hi', 'python', 'code']
['hello', 'python', 'code']
Bot