Swift - Loops
Identify the error in this Swift code using labeled statements:
outer: for i in 1...2 {
for j in 1...2 {
if j == 2 {
break outerLoop
}
print(i, j)
}
}