// this file is copyright - Mike Capstick 
 // it adds the quiz questions and answers
//  total number of questions in this test 
totalnumber=6; 
// 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]  ='A necessary ingredient for photosynthesis'
 answerarray[0]='CARBON DIOXIDE'
 stemarray[1]  ='Where your adaptations allow you to live'
 answerarray[1]='HABITAT'
 stemarray[2]  ='Food?  No thanks, Ill make my own.'
 answerarray[2]='AUTOTROPH'
 stemarray[3]  ='Temperature is rising everywhere!'
 answerarray[3]='GLOBAL WARMING'
 stemarray[4]  ='Ive got to have something to eat!'
 answerarray[4]='HETEROTROPH'
 stemarray[5]  ='The ability to do work'
 answerarray[5]='ENERGY'

