Esta es mi solución al desafío, creo que podria estar mucho mas consolidada y con más ayudas para el usuario, pero pude hacerlo por mi misma.
import java.util.Random;
import java.util.Scanner;
public class Main {
public static void main(String[] args) {
Scanner keyboard = new Scanner(System.in);
int randomNumber = new Random().nextInt(100);
int attempt = 1;
System.out.println(randomNumber);
while (attempt < 6){
System.out.println("¿Cuál es el número secreto?");
int entry = keyboard.nextInt();
if (entry == randomNumber){
System.out.println("Felicidades adivinaste el número secreto en " + attempt + " intentos");
break;
} else {
attempt++;
}
if (attempt < 6){
} else {
System.out.println("Lo siento, alcanzaste el limite maximo de intentos");
break;
}
}
}
}