Control flow / Interruption of a control flow

var numbers = []int{235711131719}
var str = ""
for i, number := range numbers {
    if i%2 == 1 {
        continue
    }
    if len(str) > 0 {
        str += "-"
    }
    str += strconv.Itoa(number)

}
//str is "2-5-11-17"
fmt.Println("str =", str)