class Animal attr_reader :color def initialize(color) @color = color endendanimal = Animal.new("brown")puts "The new animal is " + animal.color