Display XML inside Dynamic text

Hi

i try to display data from the XML file inside dynamic text using this code :

book_xml = new XML();
book_xml.ignoreWhite = true;
book_xml.onLoad = function(success) {
if (success) {
display_cont(book_xml);
_root.container.text = Result;
}
};
book_xml.load(“xml.xml”);
display_cont = function (Doc_xml) {
Result = new Array();
for (var n = 0; n<Doc_xml.firstChild.childNodes.length; n++) {
Result1 = [Doc_xml.firstChild.childNodes[n].firstChild.nodeValue];
Result.push(Result1);
}
};
for (i=0; i<Result.length; i++) {
Result = Result*;
}

The output is :

059600396X,ActionScript for Flash MX: The Definitive Guide, 2nd Edition,Book,null,19 December, 2002,O’Reilly & Associates,http://images.amazon.com/images/P/059600396X.01.THUMBZZZ.jpg,

can i display it so each record come in new line ?

059600396X
ActionScript for Flash MX: The Definitive Guide
2nd Edition
Book,
.
.
etc

check the attached zip file