var array:Array = ["hat", 1, true];
trace(array[0]); // hattrace(array[1]); // 1trace(array[2]); // true
var object:Object = {cloth:"hat", quant:1, state:true};
trace(object.cloth); // hattrace(object.quant); // 1trace(object.state); // true
We will study vectors in the future (array for one dataType only)