You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

22 lines
510 B

const questions = [
{
question: "What is the fifth planet from the sun?",
answers: [
{ id: "1", text: "Mars" },
{ id: "2", text: "Jupiter", correct: true },
{ id: "3", text: "Saturn" },
{ id: "4", text: "Venus" }
]
},
{
question: "How many planets are in the Solar System?",
answers: [
{ id: "1", text: "6" },
{ id: "2", text: "7" },
{ id: "3", text: "8", correct: true },
{ id: "4", text: "9" }
]
}
];
export default questions;