public class Doobe {
public static void main(String[] args)
{
String[] wordListOne = {"24/7", "B-To-B", "smart", "win-win"};
String[] wordListTwo = {"sticky", "branded", "focused", "aligned"};
String[] wordListThree = {"process", "solutino", "space", "vision"};
int oneLength = wordListOne.length;
int twoLength = wordListTwo.length;
int threeLength = wordListThree.length;
int rand1 = (int)(Math.random() * oneLength);
int rand2 = (int)(Math.random() * twoLength);
int rand3 = (int)(Math.random() * threeLength);
String phtase = wordListOne[rand1] + " " + wordListTwo[rand2] + " " + wordListThree[rand3];
System.out.println("what we need is a " + phtase);
}
}