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

        cat1.Cat("Kitty",6,12,13);
        cat2.Cat("Mary",7,13,14);
        cat3.Cat("Sany",8,14,15);
    }

    public static class Cat {
        private String name;
        private int age;
        private int weight;
        private int strength;

        public Cat(String name, int age, int weight, int strength) {
            this.name = name;
            this.age = age;
            this.weight = weight;
            this.strength = strength;
        }
    }
}
where is the problem?