Hey, that helps too! I found out how to make all of the LEDs blink together.
But I was wondering if there was a simpler way to writing this following code. Like when I was doing BASIC there would be a code for all 8 LEDs (b10011011, the LEDs with 1's would be on and the LEDs with 0's would be off)
OR
like
digitalWrite ([1,2,3,4,5,6,7,8,9,10...], HIGH);
delay(300);
digitalwrite ([1,2,3,4,5,6,7,8,9,10...],LOW);
delay(300)
Please let me know if I'm totally going in the wrong direction. And thanks for bearing with me. 
void setup() {
pinMode(1, OUTPUT); // initialize the digital pin(s) as an output:
pinMode(2, OUTPUT); // initialize the digital pin(s) as an output:
pinMode(3, OUTPUT); // initialize the digital pin(s) as an output:
pinMode(4, OUTPUT); // initialize the digital pin(s) as an output:
pinMode(5, OUTPUT); // initialize the digital pin(s) as an output:
pinMode(6, OUTPUT); // initialize the digital pin(s) as an output:
pinMode(7, OUTPUT); // initialize the digital pin(s) as an output:
pinMode(8, OUTPUT); // initialize the digital pin(s) as an output:
pinMode(9, OUTPUT); // initialize the digital pin(s) as an output:
pinMode(10, OUTPUT); // initialize the digital pin(s) as an output:
pinMode(11, OUTPUT); // initialize the digital pin(s) as an output:
pinMode(12, OUTPUT); // initialize the digital pin(s) as an output:
pinMode(13, OUTPUT); // initialize the digital pin(s) as an output:
}
void loop() {
digitalWrite(1, HIGH); // set the LED on
digitalWrite(2, HIGH); // set the LED on
digitalWrite(3, HIGH); // set the LED on
digitalWrite(4, HIGH); // set the LED on
digitalWrite(5, HIGH); // set the LED on
digitalWrite(6, HIGH); // set the LED on
digitalWrite(7, HIGH); // set the LED on
digitalWrite(8, HIGH); // set the LED on
digitalWrite(9, HIGH); // set the LED on
digitalWrite(10, HIGH); // set the LED on
digitalWrite(11, HIGH); // set the LED on
digitalWrite(12, HIGH); // set the LED on
digitalWrite(13, HIGH); // set the LED on
delay(100); // wait for a second
digitalWrite(1, LOW); // set the LED off
digitalWrite(2, LOW); // set the LED off
digitalWrite(3, LOW); // set the LED off
digitalWrite(4, LOW); // set the LED off
digitalWrite(5, LOW); // set the LED off
digitalWrite(6, LOW); // set the LED off
digitalWrite(7, LOW); // set the LED off
digitalWrite(8, LOW); // set the LED off
digitalWrite(9, LOW); // set the LED off
digitalWrite(10, LOW); // set the LED off
digitalWrite(11, LOW); // set the LED off
digitalWrite(12, LOW); // set the LED off
digitalWrite(13, LOW); // set the LED off
delay(100); // wait for a second
}