import mx.controls.Alert; public function textMerge(input1:String,input2:String):String { var x:String = input1 + input2; return x; }