I know how to initliaize one but how do add I items to an Array? I heard it was push() maybe? I can\'t find it...
push()
You are right. This has nothing to do with jQuery though.
var myArray = []; myArray.push("foo"); // myArray now contains "foo" at index 0.