The solution on github returns sum of old and even numbers which is not in line with the idea in the book. The code can be like: ``` def ex9_ch4(list): return [sum(list[0::2]), sum(list[1::2])] ```