oosyrag is right, you need to use instances, not separate objects.
Create one Text object, add several instances of this object on the layout. (just copy/paste)
If you arrange them in the order they were created you can do this:
System For each Text -> Set text to myArray.At(loopindex,0)
Or you can add an instance variable "ID" to this text object and pick instances by ID:
for "i" = 0 to 9
....Text compare variable ID=loopindex -> Set text to myArray.At(loopindex,0)