// Create six question objects...

  quiz = new makeArray(5);

  quiz[0] = new makeQuestion("Thin is another word for fit and all fat people are unhealthy.", // 1st question 
    1,            // correct answer           
    "True",     // choice 0
    "False");   // choice 1

  quiz[1] = new makeQuestion("Streching before a workout is a good idea but is not that important.",
    1,          // correct answer
    "True",      // choice 0
 	"False");	// choice 1

  quiz[2] = new makeQuestion("Weight lifting and swimming are good ways to loose weight.",         
	1,          // correct answer
	"True",      // choice 0
	"False");	// choice 1

  quiz[3] = new makeQuestion("You can tell if a person is fat by knowing how tall they are and how many pounds they weigh.",
	1,          // correct answer
	"True",      // choice 0
	"False");	// choice 1

  quiz[4] = new makeQuestion("The best all around body exercise is one the following:",
    3, 
    "Weight Lifting",
    "Swimming", 
    "Jogging",
    "None of the Above");



