[FMX] arrays and loops

My first time dealing with an array, I was wondering why the following does not work:

[AS]
LinkOne = [“yahoo.com”, “google.com”, “msn.com
for (lk=0; lk<3; lk++) {
trace(link_info);
this[“first_lnk”+lk].onRollOut = function() {
link_info = “”;
};
this[“first_lnk”+lk].onRollOver = function() {
link_info = LinkOne[lk];
};
this[“first_lnk”+lk].onRelease = function() {
getURL([“http://www.”+link_info], “_blank”);
};
}
[/AS]
I’m guessing the
link_info = LinkOne[lk];
line is wrong. I know to reference an an array it would be
LinkOne[“lk”]
but it’s not working like that either.

Thanks