I don´t know why the last point tells me, that Im not right.. I already tried it with "return katzenAnzahl" too but than the programm shows me an erro report.package de.codegym.task.task04.task0404;
/*
Katzenregister
*/
public class Katze {
private static int katzenAnzahl = 0;
public static void neueKatzeZufuegen() {
katzenAnzahl = +1;
}
public static void main(String[] args) {
}
}