In a file called hello.js in a folder called me, implement a program in JavaScript that prompts the user for their name and then says hello to that user. For instance, if the user's name is Jake, your program should print Hello, Jake.
However... if their name is 'Bob', your program should instead print Bye bye Bob!.
In a terminal, create the folder with mkdir ~/code/me and move into it with cd ~/code/me. Start editing a new JavaScript file with code hello.js.
When you're ready to try out your program, run it with bun hello.js.
Look back over the lesson notes, in particular how to get and write text input on the command line.
Ask your teacher to check your code.