How do you correctly create an object of a class named Cat?
Cat
class Cat = new Cat();
new Cat cat();
Cat = new Cat();
Cat cat = new Cat();