@@ -11,7 +11,11 @@ export class AmiyahJonesQuiz implements QuizQuestionProvider {
11
11
}
12
12
13
13
makeQuizQuestions ( ) : QuizQuestion [ ] {
14
- return [ AmiyahJonesQuiz . makeQuestion0 ( ) , AmiyahJonesQuiz . makeQuestion1 ( ) ] ;
14
+ return [
15
+ AmiyahJonesQuiz . makeQuestion0 ( ) ,
16
+ AmiyahJonesQuiz . makeQuestion1 ( ) ,
17
+ AmiyahJonesQuiz . makeQuestion2 ( ) ,
18
+ ] ;
15
19
}
16
20
17
21
private static makeQuestion0 ( ) : QuizQuestion {
@@ -22,7 +26,7 @@ export class AmiyahJonesQuiz implements QuizQuestionProvider {
22
26
[ AnswerChoice . A , 'Power supply and mother board' ] ,
23
27
[ AnswerChoice . B , 'Graphics card and ram' ] ,
24
28
[ AnswerChoice . C , 'Ram and hard drive' ] ,
25
- [ AnswerChoice . D , 'None, all of them are different ' ] ,
29
+ [ AnswerChoice . D , 'None of them get mixed up ' ] ,
26
30
] ) ,
27
31
AnswerChoice . UNANSWERED ,
28
32
) ; // Replace `UNANSWERED` with the correct answer.
@@ -47,10 +51,10 @@ export class AmiyahJonesQuiz implements QuizQuestionProvider {
47
51
2 ,
48
52
'Which computer part houses everything?' ,
49
53
new Map < AnswerChoice , string > ( [
50
- [ AnswerChoice . A , 'CPU ' ] ,
51
- [ AnswerChoice . B , 'Hard drive ' ] ,
52
- [ AnswerChoice . C , 'Case ' ] ,
53
- [ AnswerChoice . D , 'Power Supply ' ] ,
54
+ [ AnswerChoice . A , 'Hard drive ' ] ,
55
+ [ AnswerChoice . B , 'Case ' ] ,
56
+ [ AnswerChoice . C , 'CPU ' ] ,
57
+ [ AnswerChoice . D , 'Power supply ' ] ,
54
58
] ) ,
55
59
AnswerChoice . UNANSWERED ,
56
60
) ; // Replace `UNANSWERED` with the correct answer.
0 commit comments