Java tutorial
//package com.java2s; import java.util.Random; public class Main { public static String[] mm = { "Just do it!", "Don't stop!", "Don't stress!", "You can!", "Move, move, move!", "Concentrate!", "One task!", "Don't distracted!", "It's your life!" }; public static String get_random_motivation_message() { int idx = new Random().nextInt(mm.length); return (mm[idx]); } }