Hello,
I have a question regarding copy between arrays. For instance: I have array1 = {"1","2","3"}, array2 ={"4","5","6"}. I need to copy array1 and array2 in to array3 which is empty. array3 should be { "1","2","3","4","5","6"}.
Did anyone know the logic of this?

