Could you explain what the following recommendation from mentor means: "Be sure that the getFileContents method returns an empty string if the run method has not been started."? What should I change in my code? I've tried this, but it doesn't work:
public String getFileContents(){
            if (!isAlive()){
                return "";
            } else{
                return fileContents;
            }
        }