In this project, we'll practice encapsulation by creating an object that contains a customer's information inside a banking app.

Let's start by coding var customer = {}; to create an empty object.

Make sure to pick var followed by customer and then =, {, }, ;.