Visit each flower three times while avoiding the dragonfly.
Program2Play
Your goal is to provide the JavaScript instructions to move the bee horizontally/vertically/diagonally and to code 4 conditions to keep the bee on the canvas. Use the variable name canvas for the game area. For example a condition to keep the bee from leaving the stage on the right edge of the canvas could be: if(bee.x >= canvas.width)
{ // provide instructions to turn bee around }