ELI5: Explain Like I'm 5

Goto

Goto is a command in computer programming that tells the computer to jump to a different part of the code. The computer will stop at the current line of code, then continue executing from the line of code after the "goto" command. For example, if a computer program is running a loop and it sees a "goto" command, it would stop the loop, jump to the specified line of code, then continue from there.