// this file is copyright - Mike Capstick 
 // it adds the quiz questions and answers
//  total number of questions in this test 
totalnumber=5; 
// Initialise question and answer  arrays and question number
  numletters=0; // initialise number of letters in answer
  questionnumber=0; //this global variable hold the question number
  stemarray=new Array(totalnumber); //initialise questions array
  answerarray=new Array(totalnumber); // initialise space for answers
  bank=100;  //starting bank amount
// load  arrays with a set of questions and  answers
 stemarray[0]  ='Got enough light?'
 answerarray[0]='DIAPHRAGM'
 stemarray[1]  ='Looks like hair to me.'
 answerarray[1]='CILIA'
 stemarray[2]  ='That looks really big!'
 answerarray[2]='TOTAL MAGNIFICATION'
 stemarray[3]  ='A type of protist'
 answerarray[3]='PARAMECIUM'
 stemarray[4]  ='A kingdom of single-celled organisms'
 answerarray[4]='PROTIST'
