The keyword "new" actually tells the JVM to allocate memory and instantiate a new object. This object can then be used through your variable.

When you dont call new and just create a variable the...