In the following code, what should replace the ??? to correctly sum the numbers in the list? zork = 0 print('Before', zork) for thing in [9, 41, 12, 3, 74, 15]: zork = ??? + thing print('After', zork)