Olá, estou com um problema ao utilizar o método nextLine() do Scanner. Ele ignora o valor anterior e só pega o útlimo. O next() funciona normalmente, porém ele lê até encontrar um espaço.
System.out.println("Frase:");
String fr = teclado.nextLine();
System.out.println("Resposta:");
String resp = teclado.nextLine();
O resultado no console fica assim. Ele só lê o campo resposta.