for (var nicks = '', nick; true;) { nick = prompt('Entrez un prénom :'); if (nick) { nicks += nick + ' '; } else { break; } } alert(nicks);