Multiple FSR's controlling LED's

I'm working on a project in which I have 3 FSR's and 3 LED's connected to an Arduino Uno.

FSR's connected to AnalogPin's 0,1,2
LED's connected to DigitalPin's 9,10,11

My aim is to have each FSR control the brightness of one separate LED. The harder that the FSR is pressed, the dimmer the LED becomes.

Should this code accomplish this? What it does now is if I press the FSR on AnalogPin 0, all 3 LED's become dimmer. Pressing the other 2 FSRs doesn't do anything.

Thanks for your input.

--Here's the code:

/* FSR test

FSRs connected to AnalogPin's 0,1,2
LEDs connected to DigitalPin's 9,10,11

*/

int fsr1AnalogPin = 0; // FSR is connected to analog 0
int LED1pin = 9; // LED to pin 9 (PWM pin)
int fsr1Reading; // the analog reading from the FSR1 resistor divider
int LED1brightness;

int fsr2AnalogPin = 1; // FSR is connected to analog 0
int LED2pin = 10; // LED to pin 10 (PWM pin)
int fsr2Reading; // the analog reading from the FSR2 resistor divider
int LED2brightness;

int fsr3AnalogPin = 2; // FSR is connected to analog 0
int LED3pin = 11; // LED to pin 11 (PWM pin)
int fsr3Reading; // the analog reading from the FSR3 resistor divider
int LED3brightness;

void setup(void) {
Serial.begin(9600); // We'll send debugging information via the Serial monitor
pinMode(LED1pin, OUTPUT);
pinMode(LED2pin, OUTPUT);
pinMode(LED3pin, OUTPUT);
}

void loop(void) {
fsr1Reading = analogRead(fsr1AnalogPin);
Serial.print("Analog reading for fsr1= ");
Serial.println(fsr1Reading);

fsr2Reading = analogRead(fsr2AnalogPin);
Serial.print("Analog reading for fsr2= ");
Serial.println(fsr2Reading);

fsr3Reading = analogRead(fsr3AnalogPin);
Serial.print("Analog reading for fsr3= ");
Serial.println(fsr3Reading);

LED1brightness = map(fsr1Reading, 0, 1023, 0, 255);
// LED gets dimmer the harder you press
analogWrite(LED1pin, LED1brightness);

LED2brightness = map(fsr2Reading, 0, 1023, 0, 255);
analogWrite(LED2pin, LED2brightness);

LED3brightness = map(fsr3Reading, 0, 1023, 0, 255);
analogWrite(LED3pin, LED3brightness);

delay(100);
}

I don't see any obvious mistakes in your code, but force sensitive resistors require a little special setup to connect. Did you do something like this? Using an FSR | Force Sensitive Resistor (FSR) | Adafruit Learning System

If possible, describe the way you connected the FSRs to your Arduino. That may be the problem.