Problem with PWM controll !

Thank, I don't have voltmètre, do you think that I can try with a lamp (9V) ? You say pin 16 ??!! My pin stop at 13 and there ise CND and AREF
But I though that pin 9 have to be configured like that :

analogWrite(9, 255);

!
The code will be :

void setup(){
pinMode(3,OUTPUT);
pinMode(5,OUTPUT);
pinMode(1,OUTPUT);
pinMode(9,OUTPUT);

analogWrite(3,255);
analogWrite(5,255);
analogWrite(6,255);
//analogWrite(9,255);
analogWrite(10,255);
digitalWrite(1,LOW);
digitalWrite(9,LOW);
analogWrite(11,255);
pinMode(13,OUTPUT);// These two line is just for knowing that the download is working !
digitalWrite(13,LOW);//
}
void loop(){
}

?
Thank you for the help !