const questions = [ { id: 1, question: "What is localhost's IP address?", answers: [ { id: "1", text: "192.168.1.1" }, { id: "2", text: "127.0.0.1", correct: true }, { id: "3", text: "209.85.231.104" }, { id: "4", text: "66.220.149.25" } ] }, { id: 2, question: "What kind of fruit was used to name a computer in 1984?", answers: [ { id: "1", text: "Blackberry" }, { id: "2", text: "Blueberry" }, { id: "3", text: "Pear" }, { id: "4", text: "Apple", correct: true } ] }, { id: 3, 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