Array of functions

Hi,

I want to loop through a array to call my functions, but can’t get the syntax right, is this possible?

var myArray:Array = [‘function1()’, ‘function2()’];

for (var key:String in myArray){

// I want to call the function here

}