This confused me too at first when dealing with multiple items. RIAstar has already touched the issue: Array is a primitive, just like int is a primitive. ArrayCollection is a instantiable class as part of the flex framework, with many more features. Because it's a class, it gets slower as the data with it gets bigger, because of the overhead and the processing required of all the class extensions of ArrayCollection.
The main additions of ArrayCollection is that you can add events to them, that you can't on Arrays. For example, when you add, or change, or remove an item in the ArrayCollection, it will dispatch any event that you added through the addEventListener function.
Also, ArrayCollection has a lot more useful item management functions, like filtering, sorting, and adding, getting and removing items at locations in the collection rather than their registered indexes.
Choosing between Array and ArrayCollection is a matter of where your coding/application priorities are: Do you need performance/do you have many items? -> Array is perhaps what you are looking for. Do you need short/quick coding, easier integrateable with flex objects? -> ArrayCollection might be the way to go.
Further Reading
Some Differences explained
ArrayCollection Reference
The filter function in action