I\'m not sure if I need a lambda, or something else. But still, I need the following:
I have an array = [1,2,3,4,5]. I need to put this array, for insta
array = [1,2,3,4,5]
If you really only need to add the items in one array to another, the '+' operator is already overloaded to do that, incidentally:
a1 = [1,2,3,4,5] a2 = [6,7,8,9] a1 + a2 --> [1, 2, 3, 4, 5, 6, 7, 8, 9]