you need == to make comparisons -
if (flower1 == false && flower2 ==......)

as you are checking for Boolean false you can use -
if (!flower1 && !flower2 &&......)