Something is not quite right with this method. Can you think of two different solutions that fix the issue?

We could add return result at the end of the methodWe could replace the return type with voidWe could reduce the string manipulations to a single lineWe could get rid of print()

Fantastic! The method specifies a return type but doesn't return anything. We can either add a return statement or use void.

So close! The method specifies a return type but doesn't return anything. We can either add a return statement or use void.