Skip to content
Snippets Groups Projects
Commit df4f5474 authored by Subliminal Guy's avatar Subliminal Guy
Browse files

Change Data Helper Files

parent 14b5011a
No related branches found
No related tags found
No related merge requests found
/node_modules
package-lock.json
\ No newline at end of file
package-lock.json
/.vscode
\ No newline at end of file
......@@ -4,6 +4,12 @@ const data = [
"name": "Leanne Graham",
"username": "Bret",
"email": "Q7Z2H@example.com",
},
{
"id": 2,
"name": "Ervin Howell",
"username": "Antonette",
"email": "Ht2QX@example.com",
}
]
......
const questions = [
{
category: "Geography",
question: "What is the capital of France?",
choices: ["London", "Paris", "Berlin", "Rome"],
answer: "Paris"
},
{
category: "Movies",
question: "What is the name of the main character in The Matrix?",
choices: ["Neo", "Trinity", "Morpheus", "Cypher"],
answer: "Neo"
},
{
category: "History",
question: "Who was the first president of the United States?",
choices: ["John Adams", "Thomas Jefferson", "George Washington", "Abraham Lincoln"],
answer: "George Washington"
},
{
category: "Sports",
question: "Which team won the World Cup in 2018?",
choices: ["France", "Brazil", "Germany", "Italy"],
answer: "France"
} ,
{
category: "Science",
question: "What is the chemical symbol for gold?",
choices: ["Au", "Ag", "Pt", "Cu"],
answer: "Au"
}
]
export default questions
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment