Take a look at a variable “welcomeMessage” initialised with the value “Hello!”.

Create a variable “goodbyeMessage” and initialize it with the string “See you soon!”

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

/**
 * Take a look at a variable "welcomeMessage" initialised with the value "Hello!".
 *
 * Create a variable "goodbyeMessage" and initialize it with the string "See you soon!".
 * */

let welcomeMessage = "Hello!";