function a (b:Number, c:Number):Array { return [b * 2, c * 2]; } var d:Array = a (5, 6); trace (d[0]); trace (d[1]);