This example shows how labelled break and continue work in Go. We have an outer loop named Outer and an inner loop inside it. When the inner loop variable j equals 2, break Outer is executed. This causes the program to exit the outer loop immediately, stopping both loops. The execution table traces each step: at step 1, j is 1 and the loop continues; at step 2, j is 2, condition is true, and break Outer exits the loops. The variable tracker shows how i and j change. Key moments clarify why break Outer exits both loops and what continue Outer would do instead. The visual quiz tests understanding of loop variables and control flow. The snapshot summarizes the syntax and behavior of labelled break and continue in Go.