const greeting = 'Hello'
function greet(listener) { console.log(greeting + ", " + listener + "!") }
greet("World")