@@ -21,7 +21,7 @@ export class ShawnDunsmoreQuiz implements QuizQuestionProvider {
21
21
private static makeQuestion0 ( ) : QuizQuestion {
22
22
return new MultipleChoiceQuizQuestion (
23
23
0 ,
24
- 'What is Davids Favorite?' ,
24
+ 'What is Davids Favorite Color ?' ,
25
25
new Map < AnswerChoice , string > ( [
26
26
[ AnswerChoice . A , 'Idc' ] ,
27
27
[ AnswerChoice . B , 'Blue' ] ,
@@ -33,11 +33,17 @@ export class ShawnDunsmoreQuiz implements QuizQuestionProvider {
33
33
}
34
34
35
35
private static makeQuestion1 ( ) : QuizQuestion {
36
- return new QuizQuestion (
36
+ return new MultipleChoiceQuizQuestion (
37
37
1 ,
38
38
'What is Jordan famous for?' ,
39
- 'Pickle ball champion' ,
40
- ) ; // Provide an answer.
39
+ new Map < AnswerChoice , string > ( [
40
+ [ AnswerChoice . A , 'Photography' ] ,
41
+ [ AnswerChoice . B , 'Being short' ] ,
42
+ [ AnswerChoice . C , 'Pickleball' ] ,
43
+ [ AnswerChoice . D , 'Trampoline Dunking.' ] ,
44
+ ] ) ,
45
+ AnswerChoice . UNANSWERED ,
46
+ ) ; // Replace `UNANSWERED` with the correct answer.
41
47
}
42
48
43
49
private static makeQuestion2 ( ) : QuizQuestion {
0 commit comments