C++ Arrays
Write a program that will generate 3-10 element integer arrays.Use the random # generator to generate any 2 or 3 digit numbers andstore in array 1 and array 2.The third array is the answer array.The answer array is generated by adding array 1 and array 2. Thename of array 3 is AnswerArray. The array should also be written toa text file. To test your solution you will read the two arrays andprompt the user to find the sum of the two numbers. Check the useranswer with the AnswerArray.
Answer