How can we create an instance of the Human class?

let h: Human
h = (name: "Frank")
let h = Human("Frank")let h = Human()

Perfect! If the initializer has a parameter list, we need to use the parameter names when we create an instance of the class.

Oh noes! If the initializer has a parameter list, we need to use the parameter names when we create an instance of the class.