var Quotation=new Array() // do not change this!

// Set up the quotations to be shown, below.
// To add more quotations, continue with the
// pattern, adding to the array.  Remember ?
// to increment the Quotation[x] index!
 Quotation[0] = "Mathematics is for genius only";
 Quotation[1] = "Mathematical thinking and study is important for all fields.";
 Quotation[2] = "I hate mathematics";
 Quotation[3] = "If I do humanities subjects, <br>I don’t need mathematics";


// ======================================
// Do not change anything below this line
// ======================================

var Q = Quotation.length;
var whichQuotation=Math.round(Math.random()*(Q-1));
if ((whichQuotation<0) || (whichQuotation>50)) {whichQuotation=2};
function showQuotation(){document.write(Quotation[whichQuotation]);}
showQuotation();
