// create array
var myAnswer  	= new Array (10);
var myQuestion  = new Array (10);
// 0
myAnswer[0]		= 'QUIET';
myQuestion[0]	= 'Is silence quiet or noisy?';
// 1
myAnswer[1]		= 'CAT';
myQuestion[1]	= 'Is my cat a cat or a dog?';
// 2
myAnswer[2]		= 'RED';
myQuestion[2]	= 'What color is a red bus?';
// 3
myAnswer[3]		= 'FOURTH';
myQuestion[3]	= 'What is the fourth word in this sentence?';
// 4
myAnswer[4]		= 'LARGE';
myQuestion[4]	= 'Is a big dog large or small?';
// 5
myAnswer[5]		= 'TUBA';
myQuestion[5]	= 'What instrument does a tuba player play?';
// 6
myAnswer[6]		= 'JOHN';
myQuestion[6]	= 'What was John Hancock\'s first name?';
// 7
myAnswer[7]		= 'OHIO';
myQuestion[7]	= 'Columbus, Ohio, is the capital of which state?';
// 8
myAnswer[8]		= 'BLUE';
myQuestion[8]	= 'What color is a blue pen?';
// 9
myAnswer[9]		= '1437';
myQuestion[9]	= 'If two towns are 1437 miles apart, how many miles is it from one to the other?';
// alert ('cap.js loaded ok');
