function myPush(to:Array, from:Array):void{ for(var i:int = 0; i < from.length; ++i) to.push(from[i]); } c = myPush(clone(a), b);