function teaBreak(){
console.log("Start making tea");
console.log("Tea ready");
console.log("Enjoy the tea");
}
let teaHour;
for(teaHour=1; teaHour<12; teaHour++)
{
if(teaHour % 3 == 0)
{
teaBreak();
}
}
I have no idea what to do with it. When I ran the code, it gives me the error "Do we need an if condition somewhere? We think so". Can anyone please help me out?