Tutorial 3, problems with 'winning'

everything works except for the winning code. errors are stating:
-TypeError: Cannot read properties of undefined (reading 'hitTestCircleRect')
-ReferenceError: pod is not defined
at Qo.Pane.playGame
pls help

The error means that whatever the hitTestCircleRect() is on does not exist. If you are removing items from a container due to the hitTest then make sure that you loop backwards. With a ZIM loop that is container.loop(item=>{}, true); where the true means loop backwards.

If it is an error in our code, can you point out where?

Thanks