Here are few ideas. I am assuming that arrays first column holds the 'name' and second column holds some stuff that you want to appear on mouse over or whatever.
for 0 to array.height
.. create text at 100, 100+100*loopIndex // these could be icons or whatever, you could set icons frame/animation based on array value
.. set text to array.at(0, loopIndex)
.. set text.Index to loopIndex // an instance variable that defines which row of the array this text represents
This would automagically create a text box for each of your array values.
on mouse over text
.. set mouseOverText to array.at(text.Index, 1)
This would display a mouse over info from the array when you mouse over a related text object.
Edit: Quick example