Activity C3 — Digital outputs

Level 2 — Use a different digital output
Complete the challenge
Your entire setup()
function should look like this:
void setup() {
pinMode(11, OUTPUT); // set up pin 11 as an output.
}
Your entire loop()
function should look like this:
void loop() {
digitalWrite(11, HIGH); // turn the LED on
delay(100); // wait for 1 tenth second
digitalWrite(11, LOW); // turn the LED off
delay(1000); // wait for 1 second
}