How do you instantiate an object in Java?
Class objectName;
new ClassName();
create ClassName objectName;
ClassName objectName = new ClassName();