public class PhaseOMatic {
public static void main(String[] args) {
String[] wordListOne = {"24/7","multi-Tier","30,000 foot","B-to-B","win-win","front-end",
"web-based","pervasive", "smart", "six-sigma","critical-path", "dynamic"};
String[] wordListTwo = {"empowered", "sticky", "value-added", "oriented", "centric", "distributed", "clustered", "branded","outside-the-box", "positioned", "networked", "focused", "leveraged", "aligned", "targeted", "shared", "cooperative", "accelerated"};
String[] wordListThree = {"process", "tipping-point", "solution", "architecture", "core competency", "strategy", "mindshare", "portal", "space", "vision", "paradigm", "mission"};
int oneLenght = wordListOne.length;
int twoLenght = wordListTwo.length;
int threeLenght = wordListThree.length;
//Да се науча как се пише length!!! Не е lengHT!!!
int Rand1 = (int) (Math.random() * oneLenght);
int Rand2 = (int) (Math.random() * twoLenght);
int Rand3 = (int) (Math.random() * threeLenght);
String phrase = wordListOne[Rand1] + " " + wordListTwo[Rand2] + " " + wordListThree[Rand3];
System.out.println("What we need is " + phrase);
}
}