Guest User

Untitled

a guest
Dec 10th, 2018
106
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.56 KB | None | 0 0
  1. public String saying(){
  2. ArrayList<String> s = new ArrayList<String>();
  3. s.add("make like a tree and leaf!");
  4. s.add("make like a shepherd and get the flock outta here!");
  5. s.add("make like a banana and split!");
  6. s.add("make like a missile and cruise!");
  7. s.add("make like a fetus and head out!");
  8. s.add("make like a hockey player and get the puck out of here!");
  9. s.add("make like a drummer and beat it!");
  10. s.add("make like a bee and buzz off!");
  11. s.add("make like diarrhea and run");
  12. s.add("make like a tire and hit the road");
  13. s.add("make like a terrorist and blow this place!");
  14. s.add("make like a Bakery truck and Move your buns!");
  15. s.add("make like a banana and split!");
  16. s.add("make like the Red Sea and split!");
  17. s.add("make like a tomato and Ketch-up!");
  18. s.add("make like lightning and bolt!");
  19. s.add("make like a Nut and Bolt!");
  20. s.add("make like Michael Jackson and \"Beat it!\"");
  21. s.add("make like Tom and Cruise!");
  22. s.add("make like a jacket and zip!");
  23. s.add("make like Levi's and fade away!");
  24. s.add("make like a bowel, and move!");
  25. s.add("make like a botanist and leaf!");
  26. s.add("make like a dog and flea!");
  27. s.add("make like Houdini and disappear!");
  28. s.add("make like a football and kickoff!");
  29. s.add("make like an airplane and take off!");
  30. s.add("make like a hat and go on ahead!");
  31. s.add("make like an atom and split!");
  32. s.add("make like The Exorcist and get the hell outta here!");
  33. s.add("make like rain and get the hail out of here!");
  34.  
  35. return s.get((int) (Math.random()*s.size()));
  36. }
Add Comment
Please, Sign In to add comment