class Plant { String name; Plant(String n){ name = n; } public String toString(){ return "This is a plant who's name is "+name); } }