Please help me ( counter ++ problem as3)

var dragArray:Array = [square, circle, triangle];
var matchArray:Array = [squareMatch, circleMatch, triangleMatch];
var posArray:Array = [ {x:216.3, y:237.40}, {x:381.3, y:237.35},{x:47.25, y:237.35} ]

var currentClip:MovieClip;
var startX:Number;
var startY:Number;
var clickCount:int = 0;

for(var i:int = 0; i < dragArray.length; i++) {
dragArray*.buttonMode = true;
dragArray*.addEventListener(MouseEvent.MOUSE_DOWN, item_onMouseDown);
matchArray*.alpha = 0.2;
}

function item_onMouseDown(event:MouseEvent):void {
currentClip = MovieClip(event.currentTarget);
startX = currentClip.x;
startY = currentClip.y;
addChild(currentClip); //bring to the front
currentClip.startDrag();
stage.addEventListener(MouseEvent.MOUSE_UP, stage_onMouseUp);
}

function stage_onMouseUp(event:MouseEvent):void {
stage.removeEventListener(MouseEvent.MOUSE_UP, stage_onMouseUp);
currentClip.stopDrag();
var index:int = dragArray.indexOf(currentClip);
var matchClip:MovieClip = MovieClip(matchArray[index]);
if(currentClip.hitTestObject(matchClip)) {
//a match was made! position the clip on the matching clip:
clickCount ++;
currentClip.x = posArray[index].x;
currentClip.y = posArray[index].y;
CI.gotoAndPlay(“Correct”);
//make it not draggable anymore:
currentClip.removeEventListener(MouseEvent.MOUSE_DOWN, item_onMouseDown);
currentClip.buttonMode = false;
} if(clickCount == dragArray.length){

	trace("superbb");
	
}else {
	//match was not made, so send the clip back where it started:
	currentClip.x = startX;
	currentClip.y = startY;
	CI.gotoAndPlay("inCorrect");
}

}

please help

i just have taken this code from internet and try to use this , i want to make counter in this. After drag and hittest all it should trace , but there is a problem with my counter , i dont know how to solve this

please help

thank you so much in advance