# You use the new method to create an object in Ruby.class Animal def initialize @color = "red" end def get_color return @color endendanimal = Animal.new