// Create six question objects...

  quiz = new makeArray(6);

  quiz[0] = new makeQuestion("Which is a specific defense against viruses and bacteria?", 
    1,                             // correct answer           
    "T cells",       // choice 0
    "B cells",       // choice 1
    "complement",         // choice 2 
    "inflammation");

  quiz[1] = new makeQuestion("The maturation of T cells and the production of particular T cell receptors occurs in the",
    1,                                                       // correct answer
    "thyroid gland",      // choice 0
    "thymus gland",        // choice 1
    "tonsils",              //choice 2
    "testes");

  quiz[2] = new makeQuestion("Which is most likely to produce anaphylaxis in a susceptible individual?",         
    3, 
    "pollen", 
    "mold",
    "dust",
    "bee sting");

  quiz[3] = new makeQuestion("Which is an example of an autoimmune disease?",
    2, 
    "AIDS",
    "measles", 
    "lupus",
    "mumps");

  quiz[4] = new makeQuestion("Which is an example of an immunodeficiency disorder?",
    3, 
    "thyroiditis",
    "rheumatic fever", 
    "systemic lupus erythematosus",
    "AIDS");

  quiz[5] = new makeQuestion("What chemical is typically released by the body in an allergic response?",
    0, 
    "histamine",
    "allergens", 
    "antihistamines",
    "perforins");
