-
Notifications
You must be signed in to change notification settings - Fork 15
/
questions.js
51 lines (47 loc) · 1.41 KB
/
questions.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
var Questions = { "question" : [
{
"question" : "What is the name of Draco Malfoy's son?",
"choice1" : "Scorpius",
"choice2" : "Lucius",
"choice3" : "Diego",
"choice4" : "Severus",
"choice5" : "Dane",
"correct" : 1
},
{
"question" : "What creature does Dumbledore have as a pet?",
"choice1" : "Efreet",
"choice2" : "Fey",
"choice3" : "Troll",
"choice4" : "Phoenix",
"choice5" : "Basilisk",
"correct" : 4
},
{
"question" : "What is Voldemort's final horcrux?",
"choice1" : "A mirror",
"choice2" : "A snake",
"choice3" : "A brooch",
"choice4" : "Harry Potter",
"choice5" : "A violin",
"correct" : 2
},
{
"question" : "Who takes over as headmaster of Hogwarts after Dumbledore's death?",
"choice1" : "Voldemort",
"choice2" : "Narcissa Black",
"choice3" : "Professor Trelawny",
"choice4" : "Delores Umbridge",
"choice5" : "Professor Snape",
"correct" : 5
},
{
"question" : "Who killed Deatheater Antonin Dolohov during the Battle of Hogwarts?",
"choice1" : "Professor Flitwick",
"choice2" : "Ron Weasley",
"choice3" : "Falling Debris",
"choice4" : "Hermione Granger",
"choice5" : "A Troll",
"correct" : 1
}
]};