String[] texts = {"Привет", "Пока", "Уже виделись"};
Random random = new Random();
for (int i = 0; i < 10000; i++) {
int pos = random.nextInt(texts.length);
if (i % 10 == 0) {
System.out.print(texts[pos] + "\n");
} else {
System.out.print(texts[pos] + " ");
}
}
path : 'category/ :uuid'