Given a list of integers, return a new list where each element is the sum of all the even numbers in the original list up to that index.
[1, 2, 3, 4, 5]
[0, 2, 2, 6, 6]
Bot