//change 5 to the total number of questions
var total=5
var question=new Array()
for (i=1;i<=total+1;i++){
temp="choice"+i+"=new Array()"
eval(temp)
}
var solution=new Array()

/*Below lists the phrases that will be randomly displayed if the user correctly answers the question. You may extend or shorten this list as desired*/
var compliments=new Array()
compliments[0]="That\'s correct."
compliments[1]="Excellent."
compliments[2]="That\'s right."
compliments[3]="That\'s right."
compliments[4]="That\'s right."
compliments[5]="That\'s right."


/*Below lists the questions, its choices, and finally, the solution to each question. Folow the exact format below when editing the questions. You may have as many questions as needed. Check doc at http://javascriptkit.com/script/script2/comboquiz.htm for more info
*/

question[1]="In your poem, circle all the abstract nouns and underline all concrete nouns. Which of the following statements is true about your poem?"
choice1[1]="There are more abstract nouns than concrete nouns."
choice1[2]="There are more concrete nouns than abstract nouns."
choice1[3]="There are the same number of concrete and abstract nouns."
choice1[4]="I have no idea what concrete and abstract nouns are."

question[2]="In your poem, circle all the action verbs and underline all linking verbs or verbs in the passive voice. Which of the following statements is true about your poem?"
choice2[1]="Linking and passive voice verbs outnumber the action verbs."
choice2[2]="Action verbs outnumber the linking and passive voice verbs."
choice2[3]="There are the same amount of action verbs and linking and passive voice verbs."
choice2[4]="I don't know what action verbs, linking verbs, or verbs in the passive voice are."

question[3]="Circle all clichés. Select how many there are in your poem:"
choice3[1]="0-3"
choice3[2]="4-10"
choice3[3]="More than 10"
choice3[4]="I don't know what a cliché is."

question[4]="How many literary magazines do you subscribe to or read regularly?"
choice4[1]="0-3"
choice4[2]="4-6"
choice4[3]="7-10"
choice4[4]="More than 10"

question[5]="How many books of contemporary poetry do you read each year?"
choice5[1]="0-3"
choice5[2]="4-6"
choice5[3]="7-10"
choice5[4]="More than 10"


solution[1]="b"
solution[2]="b"
solution[3]="a"
solution[4]="d"
solution[5]="d"


