continue is similar to break. But instead of completely exiting the loop, the program will skip ahead to the next iteration.

Nice! Again, all options will work. The difference is, whatever number we select will not be printed.

Instead, the loop will skip the print command and go back to the start of the loop.

Remember, it's best practice to put continue inside the brackets.