Last active
December 21, 2023 08:13
-
-
Save georgesb/3cd9edac795e08df56a31c7dff39800e to your computer and use it in GitHub Desktop.
Practice French Multiple Choice Quiz
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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