We've set values for properties by passing them as arguments to the primary constructor or by declaring the property with an initial value.
What happens if we don't give name an initial value of "" in the primary constructor?
Person() to set nameYes! We need to give all properties a value when we instantiating a class.
Oh noes! This code will run because we can still set properties using the primary constructor.