AS3 Array

Hey! just wondering… is there any way of reading the index from an array object?

if I have done something like this:


var array:Array = new Array;
 
array.push "moose";
 
var arrayObject = array[1];
 
trace (arrayObject.index) //this is the part i am curious about.

Cause i have written another function where i need that kind of information.

Could anyone help me?!

Cheers