A list of numbers is considered increasing if each value after the first is greater than or equal to the preceding value. The following procedure is intended to return true if numberList is increasing and return false otherwise. Assume that numberList contains at least two elements.Line 1: PROCEDURE isIncreasing(numberList)Line 2: {Line 3: count ← 2Line 4: REPEAT UNTIL(count > LENGTH(numberList))Line 5: {Line 6: IF(numberList[count] < numberList[count - 1])Line 7: {Line 8: RETURN(true)Line 9: }Line 10: count ← count + 1Line 11: }Line 12: RETURN(false)Line 13: }Which of the following changes is needed for the program to work as intended?AIn line 3, 2 should be changed to 1.BIn line 6, < should be changed to ≥.CLine 8 and 12 should be interchanged.DLines 10 and 11 should be interchanged.