I've got Function1 where user inputs data in array1. I must make array2 in Function2 to be equal to array1 from Function1.
How do I "tell it" that it should use array1 from Function1?
I've tried
array2[50] = array1[50];
but of course that is not working.