We can only return a single value. Here, we return the boolean value inside the variable with return isGreater;.
return isGreater;
Make sure to pick return, followed by isGreater, and finally ;.
return
isGreater
;