You are given a list of strings. Write a function that returns the strings from the list that are of even length.
['apple', 'banana', 'kiwi', 'orange', 'pear']
['banana', 'orange']
Bot