Heres what I got so far.
1. Size of both array.
2. An object array that has the size of both combined
How would I pass all the elements of both array into that new object?.
ex:
Array 1 would have : 1,2,3,4,5,6;
Array 2 would have : 7,8,9;
How would I get
Array 3 to have: 1,2,3,4,5,6,7,8,9;