Thanks for the ideas
package com.codegym.task.task05.task0501;
/*
Creating a cat
*/
public class Cat {
// You just need to define the class. It's all about having the given variables in Cat class.
String name = "kitKat";
int age = 14;
int strength = 4;
int weight = 12;
}
/*
public static void main(String[] args) {
}
*/