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.
24 lines
704 B
24 lines
704 B
6 years ago
|
const questions = [
|
||
|
{
|
||
|
question:
|
||
|
"In the Roy Rogers -Dale Evans Museum, you will find Roy and Dales stuffed horses. Roy's horse was named Trigger, which was Dales horse?",
|
||
|
answers: [
|
||
|
{ id: "1", text: "Buttermilk", correct: true },
|
||
|
{ id: "2", text: "Daisy" },
|
||
|
{ id: "3", text: "Scout" },
|
||
|
{ id: "4", text: "Tulip" }
|
||
|
]
|
||
|
},
|
||
|
{
|
||
|
question: 'What weapon has become known as "the gun that won the west"?',
|
||
|
answers: [
|
||
|
{ id: "1", text: "Smith & Wesson Revolver" },
|
||
|
{ id: "2", text: "Colt Peacemaker", correct: true },
|
||
|
{ id: "3", text: "Winchester Revolver" },
|
||
|
{ id: "4", text: "Sharps Derringer" }
|
||
|
]
|
||
|
}
|
||
|
];
|
||
|
|
||
|
export default questions;
|