-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathquestions.js
29 lines (29 loc) · 918 Bytes
/
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
const questions = [
{
id: 1,
question: "Which planet in our solar system is closest to the sun?",
choices: ["Mercury", "Mars", "Earth"],
answer: "Mercury"
},
{
id: 2,
question:
"Which actor played Richard III in the 1995 British film drama of the same title?",
choices: ["Ian McKellen", "Partrick Stewart", "Elijah Wood"],
answer: "Ian McKellen"
},
{
id: 3,
question:
"Which Marvel superhero, also known as Steve Rogers, made his first appearance in March 1941?",
choices: ["Volverine", "Captain America"],
answer: "Captain America"
},
{
id: 4,
question: "Which English football club play at Roots Hall?",
choices: ["Liverpool", "Southend United", "Wolverhampton"],
answer: "Southend United"
}
];
module.exports.questions = questions;