I can’t tell what is wrong with this code… I’m trying to make an array and list it’s elements in a text box.
tabs = new Array();
tabs[0] = "jerseys";
tabs[1] = "tshirts";
tabs[2] = "hats";
for (i=0; i<tabs.length; i++) {
_root.array.text += tabs*;
}