var Quotation=new Array()
// Do not change this.

Quotation[0] = "Grandpa!! - Cara/Krile";
Quotation[1] = "I cannot be defeated by anger or hatred... - Exdeath/X-Death";
Quotation[2] = "I am NeoExdeath... I shall destroy all memory, all existence, and all dimensions... then I too shall disappear... forever!! - NeoExdeath";



var Q = Quotation.length;
var whichQuotation=Math.round(Math.random()*(Q-1));
function showQuotation(){document.write(Quotation[whichQuotation]);}
showQuotation();