I having trouble with the arrayname.push(). I think that its writen correctly
Code:
for (i=0; i<xml.childNodes.length; i++) {

		var atr = xml.childNodes[i].attributes;
		output.push({score:atr.score, date:atr.date, id:atr.ident, comments:atr.comments});
		
	}
my question is how to display the things I've pushed in.