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

questions[0] = "1) At number 3, what does ‘indigenous’ mean?";
choices[0] = new Array();
choices[0][0] = "spoken everywhere";
choices[0][1] = "belonging to a particular place";
choices[0][2] = "foreign";
choices[0][3] = "common";
answers[0] = choices[0][1];

questions[1] = "2) At number 3, where in the UK do children often speak two languages fluently?";
choices[1] = new Array();
choices[1][0] = "England";
choices[1][1] = "Scotland";
choices[1][2] = "Wales";
choices[1][3] = "Northern Ireland";
answers[1] = choices[1][2];

questions[2] = "3) What’s the closest synonym for the word ‘predominantly’?";
choices[2] = new Array();
choices[2][0] = "mainly";
choices[2][1] = "usually";
choices[2][2] = "quickly";
choices[2][3] = "only";
answers[2] = choices[2][0];

questions[3] = "4) At number 17, what is meant by ‘picked up languages’? ";
choices[3] = new Array();
choices[3][0] = "carried";
choices[3][1] = "lifted";
choices[3][2] = "bought";
choices[3][3] = "learnt";
answers[3] = choices[3][3];

questions[4] = "5) What is meant by ‘prisoners were sent to Australia for life’?";
choices[4] = new Array();
choices[4][0] = "to have a nice time";
choices[4][1] = "they could never return to England";
choices[4][2] = "for a holiday";
choices[4][3] = "to visit friends";
answers[4] = choices[4][1];

questions[5] = "6) By 1897, how much of the world was controlled by Britain?";
choices[5] = new Array();
choices[5][0] = "quarter";
choices[5][1] = "half";
choices[5][2] = "third";
choices[5][3] = "fifth";
answers[5] = choices[5][0];

questions[6] = "7) What is the original language of Scotland?";
choices[6] = new Array();
choices[6][0] = "Anglo-Saxon";
choices[6][1] = "Latin";
choices[6][2] = "Farsi";
choices[6][3] = "Gaelic";
answers[6] = choices[6][3];

questions[7] = "8) How do you say ‘greeting’ in Old English?";
choices[7] = new Array();
choices[7][0] = "wordum";
choices[7][1] = "ond";
choices[7][2] = "gretan";
choices[7][3] = "hated";
answers[7] = choices[7][2];

questions[8] = "What does the Old English ‘luflice’ mean? ";
choices[8] = new Array();
choices[8][0] = "friendly";
choices[8][1] = "loving";
choices[8][2] = "horrible";
choices[8][3] = "hated";
answers[8] = choices[8][1];

questions[9] = "10) Why is it difficult to sometimes spell English words?";
choices[9] = new Array();
choices[9][0] = "because it comes from Latin";
choices[9][1] = "because it’s not connected to other languages";
choices[9][2] = "because the English language has been influenced by many other languages";
choices[9][3] = "because it is so cold in the UK";
answers[9] = choices[9][2];


// 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.";