myArray[not i]?

Hi,

Is there anything like myArray[not i], that’ll return the items in the array that is not in the ‘i’ place of the array?
[AS]
myArray = new Array (item1, item2, item3, item4);
for (i = 0; i < myArray.length; i++) {
//Trace the current value of the array
trace(myArray*);

//Trace all the items except for the current value
trace(myArray[not i]);

}
[/AS]

I am aware that myArray[not i] does not work, but is there anything like this?

Thanks.

Peter :disco: