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