I can't get past the first exercise in JavaScript (Hello, World!)

I’ve tried in several ways and I can’t solve the first exercise in JavaScript, could someone help me?

What have you tried so far?

The objectives are simple:

  • Write a function that returns the string “Hello, World!”.

The emphasis is on the words function and return. :wink:
Just use the stub of a function that is already there and modify it to return ‘Hello, World!’ (Do not forget the comma and the exclamation mark)