Sorry it's tiredness and my punctuation is going to pot.
Correction - making silly mistakes it's fine now it will display the list
public void viewEntries(){ String forename = ""; String surname = ""; String street = ""; String city = ""; String county = ""; String country = ""; String post = ""; if(addressbook.isEmpty()){ System.out.println("Address Book is empty"); return; } Name name = new Name(forename, surname); Postcode postcode = new Postcode(post); Address address = new Address(street, city, county, country); Contact contact = new Contact(name, address); addressbook.viewContact(contact); }