What abandons the current iteration of the loop?
break
Reason — The break statement terminates the current loop, i.e., the loop in which it appears, and resumes execution at the next statement immediately after the end of that loop.