Saturday and Sunday conditional are not working

Any feedback on why the conditionals do not work for Saturday and Sunday would be great! Thank you!

You need to change your conditionals to this:

if (day == “Monday” || day == “Tuesday” || day == “Wednesday” …

You need to use day == for every comparison that you are making.