Instance variables generally cannot (and should not) be directly accessed from the world outside the class itself due the principle of encapsulation as explained in the last lesson. In order to obtain the value of each variable we need a get accessor method such as get_name; in order to assign a new value we need a set accessor method such as set_name.