Six integers are read from input and stored into the array numberArray. Write a function SwapArrayPos() that takes an integer array parameter and swaps the first element with the second element of the array. Ex: If the input is 25 145 95 150 105 70, then the output is: Input array: 25 145 95 150 105 70 Output array: 145 25 95 150 105 70