Initializer blocks hold the code that executes when we create an object.

Try declaring an initializer block using the init keyword and curly braces.

Fantastic work! The code in initializer blocks is great for setting up properties when an object is created.

Almost! Like a regular function, we'll need to place the code of an initializer block between curly braces ({}).