Write a function that takes a list of strings and returns the longest string in the list. If there are multiple longest strings, return the first one.
['apple', 'banana', 'kiwi', 'orange']
'banana'
Bot