There's a trait that has the talk method:
trait Talkative:
def talk: String
Override the talk method of the created class Human, extending Talkative so that it could greet by name.
The following code must work:
val human = Human("Sam")
human.talk // Hello, I'm Sam