What will the following code assign to the strstatus variable when the intlevel variable contains the number 4? intlevel=4; array=[1, 2, 3, 4, 5, 6]; if (array[intlevel]<4) { strstatus="Low"; } else { strstatus="High"; } a. "Low" b. "High" c. "4" d. "5"