believe me, when code all of us feels stupid, its normal, look at the exercise, you already have done the first step. When put
function reusableFunction(){
console.log("Hi World")
}
With that you have a function that made something, but the function does not start until you write:
reusableFunction();
This is what made functions useful, you have the code with specifies what the function does. But now if you want to tipe 5 times hello world all that haves to do is: