プログラムの開始が許可されていない理由は、次のように表示されます:フレーズトークンを削除してください。noob Q で申し訳ありません (このフォーラムの最初の Q)
public class Pirma {
public static void main(String[] args) {
String[] wordlistOne = {"ziaurus", "grazus", "baisus", "fainas"};
String[] wordlistTwo = {"afigienas", "negeras", "idomus", "juokingas"};
String[] wordlistThree = {"nekoks", "neidomus", "lameris", "kietas"};
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 phrase*** = wordlistOne[rand1] + " " + wordlistTwo[rand2] + " " + wordlistThree[rand3];
System.out.println("What we need is" + " " ***phrase***);
}
}