const y = 4;
console.log(y); // работает
// Correct and organized code
// Initialize x and convert to a number using the Number constructor,
// although it's not necessary since x is already a number
const x = 4;
const numericalX = Number(x);
console.log(x);
// Uncommented and corrected the code for y
const y = 4;
const numericalY = Number(y);
console.log(y);