After the execution of the following code how many Jeroo objects have been created?
Jeroo jenny;
Jeroo james;
Jeroo jane;
Jeroo jerry;
jenny = new Jeroo();
james = jenny;
jane = new Jeroo();
jerry = jane;
jane = new Jeroo();