Write a mips program where we store 5 integers in the array. For example
Array [] = 1, 3, 5, 7, 10
Then we reverse the array to 10, 7, 5, 3, 1
And output the addition of the elements in the reversed array with the elements in the original array. So output is: 11, 10,10, 10, 11