analogWrite() question

pretty sure... the Uno board, Pin5. Like I said I turned on the led on pin5 with a short little script (below) and it worked just fine.

int ledPin = 5;    // LED connected to digital pin 9

void setup()  { 
  // nothing happens in setup 
} 

void loop()  { 
    analogWrite(ledPin, 200);                                     
}