String stepNumbers= "---Step";String orange= "Tri-LED1 is ";String apple= " and Tri-LED2 is ";long timer;void setup() { pinMode(LED0, OUTPUT); //Use digital pin 11 to drive the red LED in the first Tri-LED pinMode(LED1, OUTPUT); //Use digital pin 10 to drive the green LED in the first Tri-LED pinMode(LED2, OUTPUT); //Use digital pin 9 to drive the blue LED in the first Tri-LED pinMode(LED3, OUTPUT); //Use digital pin 7 to drive the red LED in the second Tri-LED pinMode(LED4, OUTPUT); //Use digital pin 6 to drive the green LED in the second Tri-LED pinMode(LED5, OUTPUT); //Use digital pin 5 to drive the blue LED in the second Tri-LED Serial.begin(9600);}void loop() { timer=millis(); digitalWrite(LED0, HIGH); digitalWrite(LED1, LOW); digitalWrite(LED2, LOW); digitalWrite(LED3, LOW); digitalWrite(LED4, LOW); digitalWrite(LED5, LOW); Serial.println(stepNumbers + "1---"); Serial.println(orange + "RED" + apple + "OFF" + " at " + String(timer) + " milliseconds");