The Array class in ActionScript 3.0 allows you to create and manipulate arrays. Arrays can store any data type and are zero-indexed. You can create an Array using the new Array() constructor or array literal syntax ([]). Arrays are sparse, meaning they may have undefined elements. Array assignment is by reference. The Array class should not be used to create associative arrays, instead use the Object class.