Assume an array of 32-bit integers begins at memory location 2032. Write the MIPS code to sum array items [1-5] and place the result in array [0] (memory location 2032).
A. add s0, zero, zero, 2032
B. lw t0, 2032(s0)
C. addi s0, zero, 2032
D. add t0, t0, s1