Inside display_color(), self.color is how we access the value of the class variable color = "brown".
display_color()
self.color
color = "brown"
Make sure to pick self, followed by ., and finally color.
self
.
color