Kotlin - Loops and Ranges
Identify the error in this Kotlin code snippet:
outer for (i in 1..3) {
for (j in 1..3) {
if (j == 2) break@outer
print("$i$j ")
}
}