Full stack devn, cd challenge part2

The PORT and PROGRAM_NAME variables have been defined in app.js . Test Requirement 4.

(PORT is 4001 and PROGRAM NAME is Movie App as defined in .env)

const PORT = process.env.PORT || 4001;
const PROGRAM_NAME = “Movie App”;

Above code is not doing the job… Any suggestion guys?? Suggestions will be very helpful.
THANKS

stuck on the module import…can not know why does it show error…" The app.js file imports the express, dotenv, and movies module dependencies using the variable names express, dotenv, and movies respectively.

Expected app.js to require the movies module and set it as the value of the movies variable."