working on switch sattements...
i change the ages to a different number but i only get the default as my output.. why?
let ages= "45"
switch (ages){
case "ages<18":
console.log("cannot party with us");
break;
case "ages >=18":
console.log("party over here");
break;
default:
console.log("I do not recognize your age")
}