// use a function // alert("CHANGE ME"); gi // use another function //var a = Math.round(Math.random() * 10); // print a to the console //console.log(a); // define a function that returns a random number 100 and 200 function myRandom() { return Math.round(Math.random() * 100 + 100); } // use your defined function console.log(myRandom()); // define a function with parameters // use your defined function with parameters