This task might contain some unfamiliar things.

Don’t stress it.

You need to fix one character to make sure that myMessage is printed out to the console in UPPERCASE letters.

This task is part of the Full-Stack JavaScript Course
If you have any issues with it, you can ask for community help below the post
Feel free to help others if you’ve already solved the task

solution.js

/**
 * This task might contain some unfamiliar things.
 *
 * Don't be scared.
 *
 * You need to fix one character to make sure that myMessage is printed out to the console in uppercase letters.
 * */

function printUppercaseMessage (message) {
  console.log(message.toUpperCase());
}

get myMessage = `I'm on a path to becoming a JS developer!`;

printUppercaseMessage(myMessage);