Swift - Loops
Find the error in this Swift code snippet:
for i in 1...5 {
if i == 3 {
continue
}
if i == 6 {
break
}
print(i)
}