I am not sure what I have done wrong in here. please help !
app.get('/json', function(req, res) {
let message = "hello json";
if (process.env["MESSAGE_STYLE"] == "uppercase") {
message = message.toUpperCase();
}
res.json({"message": message});
});
Challenge: Basic Node and Express - Use the .env File
Link to the challenge: