A program is designed to determine the minimum value in a list of positive numbers called numList. The following program was writtenvar minimum = for(var i = 0; i < numList.length; i++){if (numList[i] < minimum){minimum = numList[i];}}console.log("The minimum is" + minimum);Fill in the missing code