Which of the following if statements will compile but won't give us meaningful information? Assume for this question you have a jeroo named martha.

if (martha.seesJeroo(HERE))
  • if (martha.seesJeroo(NORTH))
  • if (martha.seesJeroo(LEFT));
  • if martha.seesJeroo(AHEAD)

Remember there isn't a special behavior we want to do if there isn't a flower ahead of the jeroo so an else would not be a good choice here!