Information Security with HelmetJS - Hash and Compare Passwords Asynchronously

Tell us what’s happening:

hello there, I couldnt pass the test although my code is correct and on my terminal shoing the hash and true. Can someone help me out?
‘use strict’;
const express = require(‘express’);
const bodyParser = require(‘body-parser’);
const fccTesting = require(‘./freeCodeCamp/fcctesting.js’);
const app = express();
fccTesting(app);
const saltRounds = 12;
const myPlaintextPassword = ‘sUperpassw0rd!’;
const someOtherPlaintextPassword = ‘pass123’;
const bcrypt = require(‘bcrypt’);

//

Your code so far

Your browser information:

User Agent is: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/139.0.0.0 Safari/537.36

Challenge Information:

Information Security with HelmetJS - Hash and Compare Passwords Asynchronously

https://bcrypt-codecamp.onrender.com