Text Format in array HELP PLEASE!

Folks,

I have created an array with the instance names of all my textFields as below:

myText = [quesText,op1Text,op2Text,op3Text,op4Text,op5Text,ansText];

I have also created a new textStyle as below:
var questionFormat = new TextFormat()
questionFormat.color = 0x000000;
questionFormat.font = “Verdana”;
questionFormat.bold = true;
questionFormat.size = 12;

I don’t want to have to apply this format to all the text fields separately.

How can I apply the text format to all the items in the array at the same time?

Many thanks in advance

101