// create array
var myAnswer  	= new Array (20);
var myQuestion  = new Array (20);
// 0
myAnswer[0]		= 'QUIET';
myQuestion[0]	= 'Is silence quiet or noisy?';
// 1
myAnswer[1]		= 'CAT';
myQuestion[1]	= 'Is a 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?';
// 10
myAnswer[10]		= 'RICH';
myQuestion[10]	= 'Is a billionaire rich or poor?';
// 11
myAnswer[11]		= 'APPLE';
myQuestion[11]	= 'Which is edible, an apple or a telephone?';
// 12
myAnswer[12]		= 'CAR';
myQuestion[12]	= 'Which is more likely to be on a road, a car or a penguin?';
// 13
myAnswer[13]		= 'SUN';
myQuestion[13]	= 'Does the Earth revolve around the Sun or around a ball of cheese?';
// 14
myAnswer[14]		= '7586';
myQuestion[14]	= 'What is the reverse of the number 6857?';
// 15
myAnswer[15]		= 'GRAY';
myQuestion[15]	= 'What color is a gray car?';
// 16
myAnswer[16]		= 'TALL';
myQuestion[16]	= 'Are basketball players usually tall or short?';
// 17
myAnswer[17]		= '804';
myQuestion[17]	= 'Dallas and Chicago are 804 miles apart. How many miles separate Dallas from Chicago?';
// 18
myAnswer[18]		= '2000';
myQuestion[18]	= 'Please solve this equation: 1000 + 1000.';
// 19
myAnswer[19]		= 'MORNING';
myQuestion[19]	= 'Is 9 a.m. in the morning or the afternoon?';

// alert ('CAPTCHA code loaded OK.');