Advertisement
Guest User

random.js

a guest
Jan 9th, 2013
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. var quote = [
  2.     'Look at all that lapis!',
  3.     'ERMAGERD!',
  4.     'My heart has boats!',
  5.     'Mother of Chopped Onions!',
  6.     'Fi is a pool toy... confirmed!',
  7.     'Whatthefreakinfreakyfreakberrypie?',
  8.     'And blah blah blah, I am so fabulous!',
  9.     'Lever, Lever, Lever, Lever!',
  10.     'It is my shrine and you HAVE to play by my rules!',
  11.     'Watch out, we have a TechLord over here!',
  12.     'Yeah! We beat the bear!',
  13.     '#Cooties',
  14.     'Link was in a coma.',
  15.     'Ow! Mother of Von... Words!',
  16.     'That couch is correct.',
  17.     'Cash money?',
  18.     'Please die. I am not talking to the Armos!',
  19.     'Oh chosen one... Do things.',
  20.     'Hello tech room? This is dog.',
  21.     'I am speed jogging, not speedrunning.',
  22.     'Are we really important enough for live tweeting?',
  23.     'I want to go to there.',
  24.     'Purple Jeff?',
  25.     '#BONEMOM',
  26.     'MARIOTHON! SCREW THE RULES!',
  27.     'I have a Phoebe-phobia.',
  28.     'I am going to blow up the island.',
  29.     'I am Zeldathon God. Deal with it.',
  30.     'That is freaking 16 by 9!',
  31.     'Clean my house!',
  32.     'I am a speed runner! We do not use ladders!',
  33.     'Komali in the moonlight. So dramatic.',
  34.     'It did not go sploosh!?',
  35.     'I am a freaking boat.'
  36. ];
  37.  
  38. var printQuote = function() {
  39.     document.getElementById('quote').innerHTML = quote[Math.floor(Math.random()*(quote.length))];
  40. };
  41.  
  42. window.onload = printQuote;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement