This is probably a fairly simple way to do it, but I ask since I did not find it on google.
What I want is to add an array under another.
var array = [];
array[0]["username"] = "Eric";
array[0]["album"] = "1";
Something like this, I get no errors in Firebug, it does not work. So my question is, how does one do this in javascript?