Swift - Loops
What will be the output of this Swift code?
outer: for i in 1...2 {
for j in 1...2 {
if i == 2 { break outer }
print("\(i),\(j)")
}
}