My Test not passing

Tell us what’s happening:
i dont kow why my code is not passing test.

Your code so far
app.get('/json', (req, res) => { if (process.env.MESSAGE_STYLE === 'uppercase'){ return res.json({ "message": "HELLO JSON" }) } else { return res.json({ "message": "Hello json" }) } })

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.117 Safari/537.36.

Challenge: undefined

Link to the challenge:
https://www.freecodecamp.org/learn/apis-and-microservices/basic-node-and-express/use-the-.env-file

you have a deadlink there?

Post a link to the Glitch project.

Odd the boilerplate does not create the .env file. Not sure why that is.

Try adding the file, click “New file” give it the .env name and add this to it.

# Environment Config

# store your secrets and config variables in here
# only invited collaborators will be able to see your .env values

# reference these in your code with process.env.SECRET

MESSAGE_STYLE=uppercase

# note: .env is a shell file so there can't be spaces around =

the problem have been solved. thanks