actionscript 2.0 XML to ARRAY?

Hello,

I would like to get data into array from XML file like below;

My XML file ;

<myxml>
15
25
30
56
</myxml>

And i want array in actionscript which contain numbers in xml
array = ['15','25',30','56'];

How can i do that with actionscript ?

Anonymous2011-08-16T07:49:56Z

var myarrayxml_arr:Array = new Array();
var xml:XML = <masternode>
<node>1</node>
<node>2</node>
<node>3</node>
<node>4</node>
<node>5</node>
</masternode>

for(var i:uint = 0; i < xml.children().length(); i++){
myarrayxml_arr.push('"'+xml.children()[i]+'"');
}

trace(myarrayxml_arr);//outputs "1","2","3","4","5"
//to remove quotes: > myarrayxml_arr.push(xml.children()[i]);