Skip to content

Commit f5f4c38

Browse files
committed
reed richards
1 parent 4798b5f commit f5f4c38

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

lesson_03/quiz/src/quizzes/Davis_D._quiz.ts

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ export class DavisDQuiz implements QuizQuestionProvider {
2828
[AnswerChoice.C, 'Afro/HighTop'],
2929
[AnswerChoice.D, 'The Mullet'],
3030
]),
31-
AnswerChoice.UNANSWERED,
31+
AnswerChoice.A,
3232
); // Replace `UNANSWERED` with the correct answer.
3333
}
3434

@@ -40,7 +40,7 @@ export class DavisDQuiz implements QuizQuestionProvider {
4040
[AnswerChoice.A, 'No'],
4141
[AnswerChoice.B, 'Yes'],
4242
]),
43-
AnswerChoice.UNANSWERED,
43+
AnswerChoice.A,
4444
); // Provide an answer.
4545
}
4646

@@ -51,8 +51,9 @@ export class DavisDQuiz implements QuizQuestionProvider {
5151
new Map<AnswerChoice, string>([
5252
[AnswerChoice.A, 'Heads'],
5353
[AnswerChoice.B, 'Tails'],
54+
[AnswerChoice.C, 'Both'],
5455
]),
55-
AnswerChoice.UNANSWERED,
56+
AnswerChoice.C,
5657
); // Replace `UNANSWERED` with the correct answer.
5758
}
5859
}

0 commit comments

Comments
 (0)