What am I doing wrong in this challenge?

Can you tell me what I am doing wrong here?

My code so far


// You drop your car off at the mechanic and you want the shop to 'call you back' when your car is fixed.
let carIsBroken = false;
const callCarOwner = () => console.log("Hello your car is done!");
const fixCar = (carIsBroken, callCarOwner) => {
if (carIsBroken === true) {
  carIsBroken = false;
}
console.log(carIsBroken);
// After the car is fixed, the last thing we do is call the car owner - that's our 'callback function'.
callCarOwner();
};
fixCar(carIsBroken, callCarOwner);
let count = 1;
const addOne = () => (count += 1);

My browser information:

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

Challenge: Register a Store Listener

Link to the challenge:

Your code is completely unrelated to the challenge you have linked to. As we do not know the requirements for the code, we can’t really help.