Introduction
A for loop with step and downTo helps you count up or down by a specific amount, making it easy to repeat actions in a controlled way.
When you want to count backwards through numbers, like counting down a timer.
When you want to skip numbers while looping, like checking every second item in a list.
When you want to print numbers in reverse order with a fixed gap.
When you need to perform an action a certain number of times but not one by one.