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

questions[0] = "1) At number 4, what does a Volunteer Broker Services do?";
choices[0] = new Array();
choices[0][0] = "signs you up for many volunteering roles";
choices[0][1] = "deals with work placements ";
choices[0][2] = "matches the skills you have with a volunteering opportunity";
choices[0][3] = "sorts out the wages for employees and volunteers ";
answers[0] = choices[0][2];

questions[1] = "2) At number 5, what is meant by ‘incentive scheme’?";
choices[1] = new Array();
choices[1][0] = "you can learn new skills ";
choices[1][1] = "finding new friends through volunteering";
choices[1][2] = "you can earn a certificate for the number of hours you volunteer";
choices[1][3] = "the more hours you work the more you get paid";
answers[1] = choices[1][2];

questions[2] = "3) Which is the best definition of a ‘volunteer’?";
choices[2] = new Array();
choices[2][0] = "someone who teaches somebody a skill at a college";
choices[2][1] = "someone who offers their time and skills to help others, without being paid";
choices[2][2] = "someone who likes being with other people";
choices[2][3] = "someone who helps others and gets paid a wage ";
answers[2] = choices[2][1];

questions[3] = "4) At number 15, what is meant by ‘befriending services’?";
choices[3] = new Array();
choices[3][0] = "finding a potential husband or wife";
choices[3][1] = "visiting someone in need and acting as a friend to talk to";
choices[3][2] = "becoming someone’s best friend for life";
answers[3] = choices[3][1];

questions[4] = "5) At number 21, what is meant by ‘hitting the mark’?";
choices[4] = new Array();
choices[4][0] = "employing the most people in their company ";
choices[4][1] = "achieving a target";
choices[4][2] = "having the biggest organization ";
choices[4][3] = "finding the right people to do something; being accurate, successful";
answers[4] = choices[4][3];

questions[5] = "6) At number 22, what is meant by ‘environmental projects’?";
choices[5] = new Array();
choices[5][0] = "changing the environment ";
choices[5][1] = "increasing the amount of electricity we use";
choices[5][2] = "helping other countries to have clean water";
choices[5][3] = "a plan to improve a natural area, such as woodlands or animals";
answers[5] = choices[5][3];

questions[6] = "7) At number 25, what is meant by ‘we want species to thrive’?";
choices[6] = new Array();
choices[6][0] = "we want a certain type of animal to breed and survive";
choices[6][1] = "we want people to enjoy nature";
choices[6][2] = "we want a certain type of animal to die";
answers[6] = choices[6][0];

questions[7] = "8) At number 27, what is meant by volunteering is ‘a selfish activity’?";
choices[7] = new Array();
choices[7][0] = "the volunteer is selfish";
choices[7][1] = "the volunteer gains something from volunteering";
choices[7][2] = "the volunteer only does it once a month ";
choices[7][3] = "the volunteer gets paid a wage ";
answers[7] = choices[7][1];

questions[8] = "9) At number 34, what other benefits are there in volunteering?";
choices[8] = new Array();
choices[8][0] = "being able to find a job quicker ";
choices[8][1] = "getting paid money to help others ";
choices[8][2] = "meet new friends and it makes the volunteer happier";
choices[8][3] = "receiving rewards like presents and gifts";
answers[8] = choices[8][2];

questions[9] = "10) At number 34, what is meant by ‘step your life up a little bit’?";
choices[9] = new Array();
choices[9][0] = "to find a new hobby like joining the gym";
choices[9][1] = "find a new career ";
choices[9][2] = "stop being lazy";
choices[9][3] = "improve your life ";
answers[9] = choices[9][3];


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