Given a list of integers, write a function to return a new list containing only the even numbers from the original list.
[1, 2, 3, 4, 5, 6, 7, 8, 9]
[2, 4, 6, 8]
Bot