-
Notifications
You must be signed in to change notification settings - Fork 0
/
store.js
32 lines (32 loc) · 928 Bytes
/
store.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
const STORE = {
questions: [
{
question: 'What sweet snack is typically left out for Santa?',
options: ['Candy', 'Cookies', 'Fruits', 'Cake'],
answer: 'Cookies',
},
{
question: 'What is the highest grossing holiday movie of all time?',
options: ['The Santa Clause', 'The Grinch', 'Home Alone', 'Elf'],
answer: 'Home Alone',
},
{
question: 'How many nights is Hanukkah celebrated?',
options: ['Ten', 'Two', 'Four', 'Eight'],
answer: 'Eight',
},
{
question: 'What is the name of the little girl in The Nutcracker',
options: ['Clara', 'Alicia', 'Hanna', 'Amy'],
answer: 'Clara',
},
{
question:
'"Miracle on 34th Street” centers on what real-life department store?',
options: ['JC Penny', 'Marshals', 'Macys', 'Old Navy'],
answer: 'Macys',
},
],
currentQuestion: 0,
totalScore: 0,
};