I have two separate arrayLists. For example:
array1 = [[1 2 3 4 5 6]]
array2 = [[3 7 8 9 10 11 16]]
I want to have an arraylist like below:
arrayResult = [[1 2 3 7 8 9 10 11 16]]
There is a mutual variable on two arraylists and I want to have the first part of array1 + second part of array2 in a new arraylist.
