Skip to content

Instantly share code, notes, and snippets.

@georgesb
Last active December 21, 2023 08:13
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save georgesb/3cd9edac795e08df56a31c7dff39800e to your computer and use it in GitHub Desktop.
Save georgesb/3cd9edac795e08df56a31c7dff39800e to your computer and use it in GitHub Desktop.
Practice French Multiple Choice Quiz
const myQuestions =
[
{
"question": "Chat",
"answers": {
"a": "Dog",
"b": "Cat",
"c": "Bird",
"d": "Fish"
},
"correctAnswer": "b"
},
{
"question": "Livre",
"answers": {
"a": "Book",
"b": "Table",
"c": "Chair",
"d": "Pen"
},
"correctAnswer": "a"
},
{
"question": "Bonjour",
"answers": {
"a": "Hello",
"b": "Goodbye",
"c": "Thank you",
"d": "Sorry"
},
"correctAnswer": "a"
}
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment