funkemunky

Untitled

Apr 29th, 2017
201
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. public String randomJoke() {
  2. List<String> jokelist = getConfig().getStringList("StringLists.Jokes");
  3. Random random = new Random();
  4. int index = random.nextInt(jokelist.size());
  5.  
  6. return (String) jokelist.toArray()[index];
  7. }
Advertisement
Add Comment
Please, Sign In to add comment