Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- public String randomJoke() {
- List<String> jokelist = getConfig().getStringList("StringLists.Jokes");
- Random random = new Random();
- int index = random.nextInt(jokelist.size());
- return (String) jokelist.toArray()[index];
- }
Advertisement
Add Comment
Please, Sign In to add comment