const questions = [ { 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" } ] }, { 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 } ] } ]; export default questions;