Given a list of words, write a function to find the longest word in the list. If there are multiple longest words, return the first one encountered.
['apple', 'banana', 'kiwi', 'strawberry', 'orange']
'strawberry'
Bot