X900: Jeroo looks left and right

You are writing code using a jeroo named jaime. Change the following if-then statement's condition so that jaime will hop only if there is both a flower to the left and also to the right. Use the simplest condition you can to express this.

Your Answer:

x
 
1
if (jaime.seesFlower(LEFT) || jaime.seesFlower(RIGHT))
2
{
3
    jaime.hop();
4
}
5
Reset

Practice a different Java exercise

Feedback

Your feedback will appear here when you check your answer.