Skip to content

Commit fd8612d

Browse files
committed
feat: extra to quiz.ts file after bugfix
1 parent 0807e12 commit fd8612d

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

lesson_03/quiz/src/quizzes/joseph_caballero_quiz.ts

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -31,12 +31,12 @@ export class JosephCaballeroQuiz implements QuizQuestionProvider {
3131
[AnswerChoice.C, 'An animal'],
3232
[AnswerChoice.D, 'Whatever you want it to be!'],
3333
]),
34-
AnswerChoice.B,
35-
); // Replace `UNANSWERED` with the correct answer | B.
34+
AnswerChoice.UNANSWERED,
35+
); // Replace `UNANSWERED` with the correct answer .
3636
}
3737

3838
private static makeQuestion1(): QuizQuestion {
39-
return new QuizQuestion(1, 'What is the styling language for HTML?', 'CSS');
39+
return new QuizQuestion(1, 'What is the styling language for HTML?', '');
4040
// Provide an answer.
4141
}
4242
private static makeQuestion2(): QuizQuestion {
@@ -49,7 +49,7 @@ export class JosephCaballeroQuiz implements QuizQuestionProvider {
4949
[AnswerChoice.C, 'Circle Stuff and Stuff'],
5050
[AnswerChoice.D, 'Whatever you want it to be!'],
5151
]),
52-
AnswerChoice.B,
53-
); // Replace `UNANSWERED` with the correct answer | B.
52+
AnswerChoice.UNANSWERED,
53+
); // Replace `UNANSWERED` with the correct answer.
5454
}
5555
}

0 commit comments

Comments
 (0)