Given a list of integers, write a function to return the second smallest element in the list. You can assume the list will have at least two elements.
[4, 2, 7, 1, 5]
2
Bot