int pinsCount=10; // declaring the integer variable pinsCount int pins[] = {2,3,4,5,6,7,8,9,10,11}; // declaring the array pins[] void setup() { for (int i=0; i0; i=i-1){ // chasing left (except the outer leds) digitalWrite(pins[i], HIGH); // switching the LED at index i on delay(100); // stopping the program for 100 milliseconds digitalWrite(pins[i], LOW); // switching the LED at index i off } }