Declarations with Initialization Expressions
Declarations can have an initialization expression:
Account account1 = new Account();
Account account2 = new Account();
An expression of the form
computes a reference to a newly allocated object of the given class.