Given a list of integers, write a function to return the second largest element in the list. You can assume the list contains at least two elements.
[3, 7, 1, 5, 9]
7
Bot