﻿// enter quiz data here
// enter an arbitrary # of question objects into an array.
// each question object is of the form:
//		question : 'text of question'
//		answers : [ 'answer1', 'answer2', ... ]
//		correctAnswer : 0
// provide correctAnswer index, zero-based (i.e., the first one is 0)

var quizData =
	[
		{
			question :	"",
			answers : [	"A", "B", "C", "D" ],
			correctAnswer : 0
		},
		{
			question :	"",
			answers : [	"A", "B", "C", "D" ],
			correctAnswer : 0
		},
		{
			question :	"",
			answers : [	"A", "B", "C", "D" ],
			correctAnswer : 3
		},
		{
			question :	"",
			answers : [	"A", "B", "C", "D" ],
			correctAnswer : 0
		}
	];
	



