How to Tween the index of an array?

Hello,

If i want to tween whatever * is in a for loop, how can i go about doing this? Please see code below.

Thanks!

function handleMouseEvent(targ:MovieClip):void {
	for(var i:int=0; i<total; i++) {
		if (questions_array*!=targ) {
//------------------------below is the line in question
			TweenMax.to(questions_array*, 1, {alpha:1});
		}
	}
}