function printPoem(){
console.log("Twinkle Twinkle Little Star");
console.log("How I wonder What you are?");
console.log("Upabove the world so highhh");
console.log("like a diamond in the sky...");
}
printPoem();
function rollDice(){
let rand=Math.floor(Math.random()*6)+1;
console.log(rand);
}
rollDice();
Comments
Post a Comment