You can try to put a delay (a delay) between the welcome message and the second prompt, for example 1 second or whatever you want.
Try this:
var name = prompt("Ingresa tu nombre");
document.write("Bienvenido " + name );
setTimeout(function(){ var question = prompt("¿Te animas a jugar?"); }, 1000);
After writing the message on the screen, it will wait 1 second and skip the other prompt.
SAVE RESPONSE FROM THE SECOND PROMPT
var name = prompt("Ingresa tu nombre");
document.write("Bienvenido " + name + "<br/>");
setTimeout(function(){
var question = prompt("¿Te animas a jugar?");
document.write("El usuario "+name+" " + question + " se anima a jugar.");
}, 1000);