When you post code select it and hit the # icon third from the right over the reply box.
You need to define all the LEDs you use:-
#define LED1 13
#define LED2 12
#define LED3 11
#define LED4 10
void setup()
{
pinMode(LED1, OUTPUT);
pinMode(LED2, OUTPUT);
pinMode(LED3, OUTPUT);
pinMode(LED4, OUTPUT);
}
void loop()
{
digitalWrite(LED1, HIGH);
digitalWrite(LED2, HIGH);
digitalWrite(LED3, HIGH);
digitalWrite(LED4, HIGH);
delay(400);
digitalWrite(LED1, LOW);
digitalWrite(LED2, LOW);
digitalWrite(LED3, LOW);
digitalWrite(LED4, LOW);
delay(200);
}
will flash them.
What resistor value are you using. Maybe it is time to post a photo of your wiring.