
aleatoire=Math.floor(Math.random()*5)
switch(aleatoire){
case 0:document.write("Comment allez-vous ?");break;
case 1:document.write("Ecoutez, j'ai un petit problème...");break;
case 2:document.write("Vous croyez vraiment ?");break;
case 3:document.write("Bonjour ! Je suis très fatigué en ce moment...");break;
case 4:document.write("Au revoir ! Je rentre chez moi...");break;
}
