Does the code contain a function named myNightSky() defined with const?
Did you write a console.log() statement beneath the close of the function block?
Did you pass the myNightSky() function to console.log() as an argument?
const satellite = 'The Moon';
const galaxy = 'The Milky Way';
let stars = 'North Star';
const myNightSky = () => `Night Sky: ${satellite}, ${stars}, ${galaxy}`;
console.log(myNightSky());
Thanks. It worked. But codecademy should be able to accept different styles
of function expression. After all they taught that form in the functions
topic.