return: Leaves the function and returns parameters to the function caller.
break: Immediately ends the loop or switch and jumps to the end of it.
continue: Ends the current step of the while/for loop and continues with the next one.
Make sure you remember which is which
