Follow along with the video below to see how to install our site as a web app on your home screen.
Anmerkung: This feature may not be available in some browsers.
public void random(int [] array){
for(int k=0; k<20; k++){
double random = Math.random();
array[k] = (int)random;
}
}
k<array.length()
(int)(Math.random()*6)