So a class is really just a blueprint. It's a blueprint for an object that we will need to use in our program.

When we create a new int-type value, we are creating an instance of the int class.

Without a class, we would have to define properties and behaviours repeatedly. By packaging them in a class, new instances can be created easily by referring to the blueprint.