This are my two data arrays:
var array1 = ["test","test1","test2"];
var array2 = ["test3","test4","test5"];
I need to concact the array to get the following result:
array3["test","test3","test1","test4","test2","test5"]
How can I archive this?