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

questions[0] = "1) What is UN short for?";
choices[0] = new Array();
choices[0][0] = "useful notes";
choices[0][1] = "understanding nations";
choices[0][2] = "useless needs";
choices[0][3] = "United Nations";
answers[0] = choices[0][3];

questions[1] = "2) At number 2, what is meant by ‘it was formed’? ";
choices[1] = new Array();
choices[1][0] = "it was made";
choices[1][1] = "it was created";
choices[1][2] = "it grew";
choices[1][3] = "it ended";
answers[1] = choices[1][1];

questions[2] = "3) At number 4, what is meant by ‘a forum’?";
choices[2] = new Array();
choices[2][0] = "a place where people can vote";
choices[2][1] = "a place where people can talk to each other";
choices[2][2] = "a supermarket";
choices[2][3] = "a library";
answers[2] = choices[2][1];

questions[3] = "4) What is the main purpose of the UN?";
choices[3] = new Array();
choices[3][0] = "to keep peace between countries";
choices[3][1] = "to stop countries fighting";
choices[3][2] = "to prevent disease";
choices[3][3] = "to stop disasters";
answers[3] = choices[3][0];

questions[4] = "5) At number 7, what is meant by ‘natural disasters’?";
choices[4] = new Array();
choices[4][0] = "problems created by nature";
choices[4][1] = "problems created by man";
choices[4][2] = "wars";
choices[4][3] = "diseases";
answers[4] = choices[4][0];

questions[5] = "6) At number 8, what is meant by ‘eradicate’?";
choices[5] = new Array();
choices[5][0] = "to build something";
choices[5][1] = "to destroy something";
choices[5][2] = "to clean something";
choices[5][3] = "to grow something";
answers[5] = choices[5][1];

questions[6] = "7) At number 9, what is meant by ‘food aid’?";
choices[6] = new Array();
choices[6][0] = "free food";
choices[6][1] = "food to help people";
choices[6][2] = "food delivered to areas where there is not much food";
choices[6][3] = "food you can grow yourself";
answers[6] = choices[6][2];

questions[7] = "8) At number 12, what is meant by ‘recognised in part’?";
choices[7] = new Array();
choices[7][0] = "some parts are not understood";
choices[7][1] = "only one part is needed";
choices[7][2] = "only certain parts are accepted, not all";
answers[7] = choices[7][2];

questions[8] = "9) At number 12, what is meant by ‘religious freedoms’?";
choices[8] = new Array();
choices[8][0] = "people are free to worship their own religions";
choices[8][1] = "religious people are free";
choices[8][2] = "people don’t pay money to join a religion";
choices[8][3] = "you are free to join any religion";
answers[8] = choices[8][0];

questions[9] = "10) Why is there a United Nations day?";
choices[9] = new Array();
choices[9][0] = "to get a day off work";
choices[9][1] = "to celebrate what the UN has done for different countries";
choices[9][2] = "a day when people stop fighting";
choices[9][3] = "so people can come together";
answers[9] = choices[9][1];


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