File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed
lesson_03/quiz/src/quizzes Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -31,12 +31,12 @@ export class JosephCaballeroQuiz implements QuizQuestionProvider {
31
31
[ AnswerChoice . C , 'An animal' ] ,
32
32
[ AnswerChoice . D , 'Whatever you want it to be!' ] ,
33
33
] ) ,
34
- AnswerChoice . B ,
35
- ) ; // Replace `UNANSWERED` with the correct answer | B .
34
+ AnswerChoice . UNANSWERED ,
35
+ ) ; // Replace `UNANSWERED` with the correct answer .
36
36
}
37
37
38
38
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?' , '' ) ;
40
40
// Provide an answer.
41
41
}
42
42
private static makeQuestion2 ( ) : QuizQuestion {
@@ -49,7 +49,7 @@ export class JosephCaballeroQuiz implements QuizQuestionProvider {
49
49
[ AnswerChoice . C , 'Circle Stuff and Stuff' ] ,
50
50
[ AnswerChoice . D , 'Whatever you want it to be!' ] ,
51
51
] ) ,
52
- AnswerChoice . B ,
53
- ) ; // Replace `UNANSWERED` with the correct answer | B .
52
+ AnswerChoice . UNANSWERED ,
53
+ ) ; // Replace `UNANSWERED` with the correct answer.
54
54
}
55
55
}
You can’t perform that action at this time.
0 commit comments