Question: Task 1 - write a program that will create three 10 element [integer] number arrays. initialize the 3rd array with zeros at declaration time. Use the random number generator to create the elements in array 1 and 2 with a 3 digit number.
Task 2 - find the sum of the 2 arrays and store the results in the third array.
Task 3 - compare array 1 with array 2 to determine if they are equal
Task 4 - find the largest and smallest number in each array.