Fill in the blank in the following questions.
document.Images[1] refers to the
second element in the Images Array.document.quizform.question10.value refers to the answer the student entered into the text input called question10 on the form called quizform.if(document.getElementById("question10") != null) is asking whether question10 is empty.document.Images[0].src specifies the file path for the first element in the Images Array.var score = gradeQuiz(); replaces the value in score with the result of the gradeQuiz function. (several words)