package iteration const repeatCount = 5 func Repeat(character string) string { var repeated string for range repeatCount { repeated = repeated + character } return repeated }