File tree Expand file tree Collapse file tree 1 file changed +4
-3
lines changed
lesson_03/quiz/src/quizzes Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -28,7 +28,7 @@ export class DavisDQuiz implements QuizQuestionProvider {
28
28
[ AnswerChoice . C , 'Afro/HighTop' ] ,
29
29
[ AnswerChoice . D , 'The Mullet' ] ,
30
30
] ) ,
31
- AnswerChoice . UNANSWERED ,
31
+ AnswerChoice . A ,
32
32
) ; // Replace `UNANSWERED` with the correct answer.
33
33
}
34
34
@@ -40,7 +40,7 @@ export class DavisDQuiz implements QuizQuestionProvider {
40
40
[ AnswerChoice . A , 'No' ] ,
41
41
[ AnswerChoice . B , 'Yes' ] ,
42
42
] ) ,
43
- AnswerChoice . UNANSWERED ,
43
+ AnswerChoice . A ,
44
44
) ; // Provide an answer.
45
45
}
46
46
@@ -51,8 +51,9 @@ export class DavisDQuiz implements QuizQuestionProvider {
51
51
new Map < AnswerChoice , string > ( [
52
52
[ AnswerChoice . A , 'Heads' ] ,
53
53
[ AnswerChoice . B , 'Tails' ] ,
54
+ [ AnswerChoice . C , 'Both' ] ,
54
55
] ) ,
55
- AnswerChoice . UNANSWERED ,
56
+ AnswerChoice . C ,
56
57
) ; // Replace `UNANSWERED` with the correct answer.
57
58
}
58
59
}
You can’t perform that action at this time.
0 commit comments