https://codegym.cc/quests/lectures/questsyntax.level05.lecture05 Implement the fight method Dont understand whats wrong in the below code.
package com.codegym.task.task05.task0502;
/*
Implement the fight method

*/

public class Cat {
    public int age;
    public int weight;
    public int strength;

    public Cat() {
    }

    public boolean fight(Cat anotherCat) {

        if (this.age < anotherCat.age && this.strength > anotherCat.strength &&
                this.weight > anotherCat.weight) return true;
        else return false;

    }

    public static void main(String[] args) {
        Cat cat1 = new Cat();
        Cat cat2 = new Cat();

        cat1.weight = 15;
        cat1.age = 4;
        cat1.strength = 30;

        cat2.weight = 12;
        cat2.age = 5;
        cat2.strength = 24;

        System.out.println(cat1.fight(cat2));
        System.out.println(cat2.fight(cat1));

    }
}