I cant seem to find a resource online for the syntax of multidimensional arrays, I was hoping someone here could identify the error, thanks. I'm storing the array like this:
songs={{'title':'I Like It','artist':'Enrique Englesias','url':'audio/I Like It.mp3'},
{'title':'Driving Me Crazy','artist':'Sam Adams','url':'audio/driving me crazy.mp3'},
Then im calling them like this
document.write(songs[0]['artist']);
Thanks in advance!