Array bug or script error

Hello,
Yeah array script are famous on unity answer, but this is wierd for sure, here’s the begining of my script:

var Gauche:boolean[];
var Numero:int;
function Start () {
	Numero=0;
	print(Gauche[Numero]);
	if(Gauche[Numero]==true){
		//Do things
	}
	else {
		//Do other things
	}
}

In unity editor, Gauche contains allready 4 elements, and here’s what i got:
85274-capture.png
So it means that the print is done but there are still an eoor. I checked the line of the error and of the printt, they’re been created all since the same line.
And the rest of the script is executed normaly

So, bug or script error? ^^

Ok i found the solution and in fact i was stupid. The script i created is correct, but the script were also in another object that i forgot and that i haven’t prepared ^^. Sorry for you alla and thanks for the response :3