function printUppercaseMessage (message) { console.log(message.toUpperCase()); } get myMessage = `I'm on a path to becoming a JS developer!`; printUppercaseMessage(myMessage);
All code looks well. I couldn't find what should i change it 🙁
@sinad get myMessage is supposed to be the variable declaration.
get myMessage
You only need to change one symbol in the very beginning of the string to make it valid.