Given a list of strings, return a new list containing only the strings that have a length of 3.
['apple', 'cat', 'dog', 'elephant', 'fox']
['cat', 'dog', 'fox']
Bot