jeudi 9 septembre 2021

randomly select an item in an array and print 2 different items form array

How can I remove the item in an array that is selected by the random?. Instead of giving me two different items in an array it's just printing the same item selected by the random.

String[] names = {"jey","abby","alyssa","cole","yzabel","miho"};
  
  Random rand = new Random();
   String names_rand = names[rand.nextInt(names.length)];

 
 for(int i = 0; i < 2; i++){
     System.out.println(names_rand);
 } 



Aucun commentaire:

Enregistrer un commentaire