Below is a Go program with three nested for loops. Your task is to break the second nested loop when the condition if counter >= 2 is met inside the third loop.
To achieve this, determine the correct placement for the label and use a break statement followed by the label name to break the loop. You can choose any label name you prefer!
Remember to choose the right location for your label to ensure the second nested loop breaks as intended.