Add Keywords to Your package.json not working

Tell us what’s happening:
Challenge is not accepting solution. Tells me:
“keywords” should include “freecodecamp”
Even though, keywords do include “freecodecamp”.

Your code so far
https://scratched-cottony-front.glitch.me

   "keywords": [ "freecodecamp", "npm", "node" ],

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.61 Safari/537.36.

Challenge: Add Keywords to Your package.json

Link to the challenge:

What does your package.json file look like? I think that’s where the issue is.

{
“author”: “Julio Leonardo”,
“description”: “A project that does something awesome”,
“//1”: “describes your app and its dependencies”,
“//2”: “https://docs.npmjs.com/files/package.json”,
“//3”: “updating this file will download and update your packages”,
“name”: “hello-express”,
“version”: “0.0.1”,
“description”: “A simple Node app built on Express, instantly up and running.”,
“main”: “server.js”,
“scripts”: {
“start”: “node server.js”
},
“dependencies”: {
“express”: “^4.17.1”
},
“engines”: {
“node”: “12.x”
},
“repository”: {
“url”: “https://glitch.com/edit/#!/hello-express
},
“keywords”: [ “freecodecamp”, “npm”, “node” ],
“license”: “MIT”,

}