Create an array, array1, that has the last 14 elements of which the first element is 49 and the last element is 10. THen using the colon symbol create a new array, array 2, whcih has 8 elements. the first 4 elements of array 2 are the 4th through the 7th(inclusive) elements of array 1. the last 4 elements of array 2 are twice the values of the 9th through the 12th(inclusive) elements of array 1. Lastly create an array, arrayAugment, which combines array1 and array2.