I have added the console.log(“Hello World”) in the myApp.js file but it does not log anything. Here is the link to my glitch file https://aerial-just-pomegranate.glitch.me
server.js
/******************************************************
- PLEASE DO NOT EDIT THIS FILE
- the verification process may break
- ***************************************************/
var bGround = require(‘fcc-express-bground’);
var myApp = require(‘./myApp’);
var express = require(‘express’);
var app = express();
/******************************************************
- PLEASE DO NOT EDIT THIS FILE
- the verification process may break
- ***************************************************/
myApp.js
let express = require(“express”);
let app = express();
console.log(“Hello World”);
module.exports = app;