Code below:
class Main {
public static void main(String[] args) {
String colors[]={"red","orange","yellow","green","blue","purple","black","white","gray","brown","gold","rainbow"};
String location[]={"head","neck","shoulder","back","chest","waist/hip","legs","feet","tail","full body","background"};
String theme[]={"cyber","glitch","supernatural","multiple...","bone(s)","creepy","pastel","cute","plant(s)","long","mean","beautiful","ugly","insane","too much...","OwO","ERROR","music","elemental","fire","water","fluffy","insect","flower","funny","sign","halo","horns","antlers","thorns","strings","chains","clothing","brute","jewelry","AKHDOIFHDASKJFH"};
int colorint;
int locationint;
int themeint;
colorint=(int)(Math.random()*12);
locationint=(int)(Math.random()*11);
themeint=(int)(Math.random()*36);
System.out.println(theme[themeint]+", "+colors[colorint]+", "+location[locationint]);
}
}