// JavaScript Document
function spinQuote()
{
   var whichQuote=Math.floor(Math.random()*5);

    var quote=new Array(5)
     quote[0]="I love JavaScript..sometimes.";
     quote[1]="Why are you pushing my button?";
     quote[2]="The button you pushed can\'t push you back. You bully, you!";   
     quote[3]="This alert is here to inform you that alerts are annoying.";
     quote[4]="Which came first, the button or the alert?";
  
   document.write(quote[whichQuote]);
  }

