var questions = new Array();
var choices = new Array();
var answers = new Array();
var response = new Array();

// To add more questions, just follow the format below.

questions[0] = "1. How many years has Gus had a show on the CookingChannel?";
choices[0] = new Array();
choices[0][0] = "5";
choices[0][1] = "12";
choices[0][2] = "15";
choices[0][3] = "20";
choices[0][4] = "7";
answers[0] = choices[0][1];

questions[1] = "2. Where was The Luncheonette located?";
choices[1] = new Array();
choices[1][0] = "New Jersey";
choices[1][1] = "Long Island";
choices[1][2] = "Westchester";
choices[1][3] = "The Bronx";
choices[1][4] = "Riverside";
answers[1] = choices[1][2];

questions[2] = "3. What year was Carmen named Miss Spain?";
choices[2] = new Array();
choices[2][0] = "1990";
choices[2][1] = "1992";
choices[2][2] = "1994";
choices[2][3] = "1996";
choices[2][4] = "1999";
answers[2] = choices[2][4];

questions[3] = "4. What is Sabrina's favorite way to navigate New York City?";
choices[3] = new Array();
choices[3][0] = "Bicycle";
choices[3][1] = "Subway";
choices[3][2] = "Moped";
choices[3][3] = "Bus";
choices[3][4] = "Taxi";
answers[3] = choices[3][4];

questions[4] = "5. Where does Troy's family have an apple orchard?";
choices[4] = new Array();
choices[4][0] = "Vermont";
choices[4][1] = "Maine";
choices[4][2] = "California";
choices[4][3] = "Oregon";
choices[4][4] = "Rhode Island";
answers[4] = choices[4][3];

questions[5] = "6. Where is Troy's family from?";
choices[5] = new Array();
choices[5][0] = "Sweden";
choices[5][1] = "Cuba";
choices[5][2] = "South Korea";
choices[5][3] = "Vietnam";
choices[5][4] = "South Africa";
answers[5] = choices[5][2];

questions[6] = "7. Where did Carmen and Oliver go to school?";
choices[6] = new Array();
choices[6][0] = "Culinary Institute of America";
choices[6][1] = "La Cuisine Sans Peur";
choices[6][2] = "International Cooking School";
choices[6][3] = "Culinary Center of New York";
choices[6][4] = "Institute of Culinary Education";
answers[6] = choices[6][0];

questions[7] = "8. What basketball players were scheduled to attend the March Madness basketball episode?";
choices[7] = new Array();
choices[7][0] = "Larry Bird, Michael Jordan and Magic Johnson";
choices[7][1] = "LeBron James, Kobe Bryant and Christian Laettner";
choices[7][2] = "Tracy McGrady, Yao Ming and Rasheed Wallace";
choices[7][3] = "Stephen Curry, Jason Richards and William Archambault";
choices[7][4] = "Vince Carter, Jason Kidd and Steve Nash";
answers[7] = choices[7][2];

questions[8] = "9. Who does Aimee work for?";
choices[8] = new Array();
choices[8][0] = "World Bank";
choices[8][1] = "United Nations";
choices[8][2] = "Saks Fifth Avenue";
choices[8][3] = "Macy's";
choices[8][4] = "American Refugee Committee";
answers[8] = choices[8][4];

questions[9] = "10. What are the names of Gus's cats?";
choices[9] = new Array();
choices[9][0] = "Salt and Pepper";
choices[9][1] = "Chocolate and Vanilla";
choices[9][2] = "Sugar and Spice";
choices[9][3] = "Peanut Butter and Jam";
choices[9][4] = "Pickles and Ice Cream";
answers[9] = choices[9][0];



// response for getting 80%-100%
response[0] = " Red-Hot\n\n Move over, Priya Patel.\n\n You're in the running for Gus's number one fan!";
// response for getting 40%-70%
response[1] = " Lukewarm\n\n Not bad. You probably remember the plot,\n but the details are a blur.";
// response for getting 0%-30%
response[2] = " Ice Cold\n\n Are you sure you read the book?\n\n Maybe you'll do better after you take a second look.";