Array Loop - result plus "instance_name.text"?

Hello all - I’m sure there is a very simple solution to what I’m trying to do, I’m just not getting it. I have a bunch of input boxes on my project stage, they all will be restricted to containing numbers. What I am trying to do is write a loop that pulls out the number value for each one and assigns it to a global variable to be pulled later in the project.

Here is the code I am using:

function myFunction( event:Event ):void {
var instanceArray:Array = new Array(“instance1”, “instance2”);
var globalVariableArray:Array = new Array(“global1”, “global2”);

var i:int;
for (i = 0; i < (instanceArray.length); i++) {
var sValue:String = String(String(instanceArray*)+.text);
var nValue:Number = Number(sValue);
MyGlobal.String(globalVariableArray*) = nValue;
}

}

I can trace the array fine, the problem that I am having is that I am unable to put together the value into the strings so that this code ends up outputting:

Loop 1 -->
var sValue:String = String(instance1.text);
var nValue:Number = Number(sValue);
MyGlobal.global1 = nValue;
Loop 2 -->
var sValue:String = String(instance2.text);
var nValue:Number = Number(sValue);
MyGlobal.global2 = nValue;

I appreciate any advice you may have!

Thank you,
Keith