My initial reaction is to say yes, try ArrayCollection. It uses a different accesor to get each value (GetItemAt()). In other languages, I have run across the odd performance issue where using myArray[x] performed differently than GetAt(x) or in this case GetItemAt(x).
Let me know what you discover. Charles P.

