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

questions[0] = "1)  What is Flamingo Land?";
choices[0] = new Array();
choices[0][0] = "a place to play tennis ";
choices[0][1] = "a theme park and a zoo";
choices[0][2] = "a place for flamingos";
choices[0][3] = "a place to relax";
answers[0] = choices[0][1];

questions[1] = "2) What is meant by ‘bathe in the sun?’";
choices[1] = new Array();
choices[1][0] = "drink water in the sunshine ";
choices[1][1] = "have a bath in the river";
choices[1][2] = "have a bath in a lake";
choices[1][3] = "lie down and enjoy the sunshine";
answers[1] = choices[1][3];

questions[2] = "3) What is meant by ‘a senior citizen’?";
choices[2] = new Array();
choices[2][0] = "a very important person.";
choices[2][1] = "a person who has become a UK citizen";
choices[2][2] = "a person who is over 65 years old";
choices[2][3] = "a very stupid person";
answers[2] = choices[2][2];

questions[3] = "4) How do many people travel to Flamingo Land?";
choices[3] = new Array();
choices[3][0] = "by plane";
choices[3][1] = "on foot";
choices[3][2] = "on a camel";
choices[3][3] = "by coach";
answers[3] = choices[3][3];

questions[4] = "5) What is meant by ‘scary’?";
choices[4] = new Array();
choices[4][0] = "very relaxing";
choices[4][1] = "very enjoyable";
choices[4][2] = "very frightening";
choices[4][3] = "very difficult";
answers[4] = choices[4][2];

questions[5] = "6) Where are the Pink elephants going?";
choices[5] = new Array();
choices[5][0] = "into the jungle";
choices[5][1] = "backwards and forwards";
choices[5][2] = "to the pub";
choices[5][3] = "round and round";
answers[5] = choices[5][3];

questions[6] = "7) What do some English people like to eat?";
choices[6] = new Array();
choices[6][0] = "fish and chips";
choices[6][1] = "chicken tikka";
choices[6][2] = "sheish kebab";
choices[6][3] = "frogs legs";
answers[6] = choices[6][0];

questions[7] = "8) Which animal has a horn?";
choices[7] = new Array();
choices[7][0] = "a tortoise";
choices[7][1] = "a penguin";
choices[7][2] = "a rhinocerous";
choices[7][3] = "a flamingo";
answers[7] = choices[7][2];

questions[8] = "9) What do penguins love to eat?";
choices[8] = new Array();
choices[8][0] = "hamburger";
choices[8][1] = "chocolate";
choices[8][2] = "bananas and custard";
choices[8][3] = "fish";
answers[8] = choices[8][3];

questions[9] = "10) What is a miniature pony?";
choices[9] = new Array();
choices[9][0] = "a very small horse";
choices[9][1] = "a very big elephant";
choices[9][2] = "a very long snake";
choices[9][3] = "a very thin dog";
answers[9] = choices[9][0];


// response for getting 100%
response[0] = "Excellent, 100% correct!";
// response for getting 90% or more
response[1] = "Excellent, try again to get 100%!"
// response for getting 70% or more
response[2] = "Well done. Good score. Try again to do better?";
// response for getting over 50%
response[3] = "You got more than half of the questions right. Can you do better?";
// response for getting 40% or more
response[4] = "You got some questions right, you can do better!";
// response for getting 20% or more
response[5] = "You didn't do too well, why not try again!?";
// response for getting 10% or more
response[6] = "Not good!  Try again to improve!";
// response for getting 9% or less
response[7] = "Less than 10% correct.";