文字列を書き出すと、文字列リテラルが適切に閉じられていないことがわかりますが、..? /|\ を取り出すと、エラーは 2 行下の脚に移動します。私は調査しましたが、問題が何であるかを知ることはできません...
public static void printMan(int badGuesses) {
String[] man = new String[];
man={"______",
"| |",
"| o",
"| |",
"| /|\", //it tells me that i need to insert missing quote
"| |",
"| / \"
};
int counter = 0;
while (counter < badGuesses) {
System.out.println(man[counter]);
}