it shows the default code only what's wrong with this code? I am a beginner programmer. Thank you!
let age=30;
switch (age){
case age > 23:
console.log("you are allowed to drink beer");
break;
case age < 23:
console.log("you are not allowed to drink or smoke");
break;
case age >= 23:
console.log("you can smoke or drink from next year");
break;
default:
console.log("check your age first in the birth certificate");
}