//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()
var explanation=new Array()

/*Below lists the questions, its choices,the solution,  and finally the explanation to each question. Follow the exact format below when editing the questions. You may have as many questions as needed.*/

question[1]=" Which of the following is not an ingredient needed for snowflakes to form?"
choice1[1]=" Cold air temperatures"
choice1[2]=" Dust or pollen"
choice1[3]=" Water vapor"
choice1[4]=" Lightning"

question[2]=" Who was the first person to successfully photograph individual snowflakes?"
choice2[1]=" Thomas Edison"
choice2[2]=" Emilia Earhart"
choice2[3]=" Wilson Bentley"
choice2[4]=" Benjamin Franklin"

question[3]=" True or False: No two snowflakes are exactly alike"
choice3[1]=" True"
choice3[2]=" False"
choice3[3]="  "
choice3[4]="  "

question[4]=" How many sides does a snow crystal (snowflake) have?"
choice4[1]=" 8"
choice4[2]=" 6"
choice4[3]=" 2"
choice4[4]=" 15"

question[5]=" Which location holds the record for the most snowfall ever recorded in one winter?"
choice5[1]=" Mount Everest, Nepal"
choice5[2]=" Greenland"
choice5[3]=" Mount Baker, Washington"
choice5[4]=" Colorado"

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

explanation[1]="Snowflakes form when water vapor (water in a gas form) freezes onto dust or pollen particles in the air, becoming ice crystals. More and more ice crystals freeze together and form snowflakes. Eventually, the snowflakes are too heavy and fall several thousand feet to the ground. As long as the air temperature stays at or below freezing all the way to Earth's surface, the snowflakes stay frozen and do not melt."
explanation[2]="Wilson 'Snowflake' Bentley was a farmer from Vermont who became fascinated by snowflakes in the mid-1800s. Bentley became the first person to take a photograph of an individual snowflake (or snow crystal) through a microscope, and took about 6,000 photographs of snowflakes during his lifetime."
explanation[3]="Scientists estimate that there are one trillion, trillion, trillion types of snowflakes! However, there are seven basic shapes that they take. Wilson 'Snowflake' Bentley, a snowflake photographer, was the first person to discover that no two snow crystals are exactly the same, though some may look similar. "
explanation[4]="Snow crystals form as hexagons, or six-sided shapes. However, they take on a variety of different forms depending on the air temperature and humidity in which they form."
explanation[5]="Mount Baker, in Washington State, is officially the snowiest place on earth in recorded history. It has received 1,140 inches (95 feet) of snow falling in one winter. This deep snow accumulation is due to an effect called La Ni�a, in which the Pacific Ocean is cooler than normal." 


