Hello,

I'm new to this, but I am doing Programming, as one of my papers for uni
And also, I am new to Java and Programming

But after I compile it, it says 'unreachable statement'


String generateStatusR eport(Robot karel) {
Code:
if(isRobotDead(karel))
    return"The robot is dead." 
else
    return"The robot is alive.";

if(isRobotFacingWall(karel))
...