Beginner
You are writing your first JavaScript program to greet users. Fill in the blank to make this code work:
1let firstName = "John";2let timeOfDay = "morning";34let greeting = _______________56// Should output: "Good morning, John!"7console.log(greeting);