👉 In programming, a repetitive statement is one that repeats some or all of its instructions. For example, if we have an array `arr` and we want to print each element in the array one by one, we can use a repetitive statement like this: ```csharp for (int i = 0; i < arr.Length; i++) { Console.WriteLine(arr[i]); } ``` This is known as a "for loop" because it repeats the same instructions over and over again