statement2 will execute after the continue, given that the loop was not in the last iteration.
statement3 will execute after the break.
'continue' (as the name suggests) continues the loop, while skipping the rest of the statements in the current iteration.
'break' breaks and exits from the loop.