const color = 'blue' const returnSkyColor = () => { return color; // blue }; console.log(returnSkyColor()); // blue