What's wrong with this class?

start() doesn't return a boolean but a string valueThere's no initializermodel never gets a value

Exactly! start() can't return a string value; its return type specifies that it needs to return a boolean value.

Whoops! start() can't return a string value; its return type specifies that it needs to return a boolean value.