Level 8 Lesson 3 Javascript
It says :
After the function definition, call the doYoga function twice.
function doYoga()
{
console.log("some yoga");
console.log("some more yoga");
console.log("now relax...");
}
doYoga();
doYoga();
I have tried everything, please somebody help me!