Consider the function computes (X) whose pseudocode is given below : \(\frac{\text{computeS (X)}}{S[1] ←1}\) for i ← 2 to length(X) S[i] ← 1 if X[i-1] ≤ X[i] S[i] ← S[i] + S[i - 1] end if end for return S Which ONE of the following values is returned by the function computeS (X) for X= [6, 3, 5, 4, 10] ?