questions = new Array();
answers = new Array();
questions[0] = "Who said, \"Language tethers us to the world; without it we spin like atoms\".";
answers[0] = "Francois de la Rochefoucauld";
questions[1] = "Who penned the quote, \"Those who know nothing of foreign languages know nothing of their own\".";
answers[1] = "Johann Wolfgang von Goethe";
questions[2] = "How many of the world's languages have a million or more speakers?";
answers[2] = "347";
questions[3] = "What nation has the most indigenous languages?";
answers[3] = "Papua New Guinea";
questions[4] = "'Suomi' is the word for which language?";
answers[4] = "Finnish";
questions[5] = "In Spanish what does \"Buenos Noches\" mean?";
answers[5] = "'Good Night'";
questions[6] = "'Ellinika' is the word for which language?";
answers[6] = "Greek";
questions[7] = "'Kijomba' is the word for which language?";
answers[7] = "Swahili";
questions[8] = "'Shi ingolth-a' means \"I love you\" in what language?";
answers[8] = "Apache";
questions[9] = "'Aloha wau ia oe' means \"I love you\" in what language?";
answers[9] = "Hawaiian";
questions[10] = "'Je t'aime' means \"I love you\" in what language?";
answers[10] = "French";
questions[11] = "'Wo ai nei'  means \"I love you\" in what language?";
answers[11] = "Chinese";
questions[12] = "'Mimi nakupenda' means \"I love you\" in what language?";
answers[12] = "Swahili";
questions[13] = "'Obrigado' is Portuguese for?";
answers[13] = "'Thank you'";
questions[14] = "'Corduroy' comes from what phrase?";
answers[14] = "French, \"cord du roi\" or \"cloth of the king\"";
questions[15] = "All Hebrew originating names that end with the letters 'el' have something to do with..?";
answers[15] = "God";
questions[16] = "'Amigo' means what in Spanish?";
answers[16] = "'friend'";
questions[17] = "'C'est la vie' means what in French?";
answers[17] = "'That's life'";
questions[18] = "Moscow is the capital of which country?";
answers[18] = "Russia";
questions[19] = "Kabul is the capital of which country?";
answers[19] = "Afghanistan";
questions[20] = "Buenos Aires is the capital of which country?";
answers[20] = "Argentina";
questions[21] = "Luanda is the capital of which country?";
answers[21] = "Angola";
questions[22] = "Vienna is the capital of which country?";
answers[22] = "Austria";
questions[23] = "Sofia is the capital of which country?";
answers[23] = "Bulgaria";
questions[24] = "Dublin is the capital of which country?";
answers[24] = "Ireland";
questions[25] = "Tallinn is the capital of which country?";
answers[25] = "Estonia";
questions[26] = "Amman is the capital of which country?";
answers[26] = "Jordan";
questions[27] = "Christopher Colombus spoke which language?";
answers[27] = "Spanish, although he was likely not a native speaker.";
questions[28] = "How many tones does Mandarin have?";
answers[28] = "4 to 5, depending on how they are understood.";
questions[29] = "How many tones does Thai have?";
answers[29] = "5";
questions[30] = "How many tones does Cantonese have?";
answers[30] = "6 to 9, depending on how they are understood.";
questions[31] = "How many letters are there in the Korean Alphabet?";
answers[31] = "26";
questions[32] = "In what century was the Korean Alphabet created?";
answers[32] = "15th";

function Question () {
index = Math.floor(Math.random() * questions.length);
document.getElementById('quote').innerHTML = "<div align=center><B>" + questions[index] + "</B>&nbsp;&nbsp;&nbsp;&nbsp;" + "<button type=\"button\" class=\"buttontext\" onclick=\"alert(answers[index]); Question();\" >Answer!</button></div>";
}


