Can you help me for checking the code

Tell us what’s happening:
can anyone help me, iam not understanding the error.

reusableFunction

should output “Hi World” to the dev console. You should call

reusableFunction
after you define it

**Your code so far**
      
```js

function reusableFunction() {
console.log("Hi World");

}

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.149 Safari/537.36.

Challenge: Write Reusable JavaScript with Functions

Link to the challenge:

You should call the function after you define it.
You can call or invoke this function by using its name followed by parentheses, like this: functionName();

Sorry, the formatting didn’t properly display on your post. Can you copy your current code, and paste it here in a reply? When pasting your code, wrap it in three backticks like this:

```
paste your code here
```

Thank you i get the output