You've learned to make decisions with if statements. Now you'll learn to repeat actions with loops. Loops let you execute code multiple times without writing it multiple times.
Go takes a minimalist approach here. While other languages have for, while, and do-while loops, Go has only for. This single keyword handles every looping scenario you'll encounter.