How to load Array to the text field?

Someth. do I wrong :rolleyes:
I tested it simply with this code and the textfield aslo displays only the last index c even if the array has content a,b,c and trace() outputs abc :confused:


var a:Array = new Array ();
var myArray:Array = new Array ("a", "b", "c");
for (i = 0; i < myArray.length; i++)
{
	a* = myArray*;
// output abc	
trace (a*);
// fill only c
	entries.text = a*
}


How can we fill it?