Given a list of strings, write a function to return a new list containing only the strings that have a length of 3 or more.
['hello', 'python', 'is', 'awesome', '!', 'coding']
['hello', 'python', 'awesome', 'coding']
Bot