This visual trace shows how labeled statements work in nested loops in Swift. The outer loop runs from 1 to 3, and inside it the inner loop runs from 1 to 3. At each step, the product i*j is checked. When it equals 4, the break with label 'outerLoop' stops both loops immediately. The execution table shows each step's variables and actions. The variable tracker shows how i and j change. Key moments clarify why the labeled break exits the outer loop, what happens if the condition never triggers, and why no output appears after the break. The quiz tests understanding of variable values at steps, when the condition triggers, and the effect of removing the label. The snapshot summarizes how to use labeled breaks to control nested loops in Swift.