Hi
could somebody help me with my code wont work. It doesnt return any error i just get a blank screen with nothing logged. This is for the race day project:
let raceNumber = Math.floor(Math.random() * 1000);
const registeredEarly = false;
const age = 18;
if (registeredEarly && age > 18) {
raceNumber += 1000;
}
if (registeredEarly && age > 18) {
console.log(Number ${raceNumber} you will race at 9.30am
);
} else if (!registeredEarly && age > 18) {
console.log(Number ${raceNumber} you will race at 11.00am
);
} else if (age < 18) {
console.log( Number ${raceNumber} you will race at 12.30pm
);
}