class Alix def initialize @home = "Seattle" @occupation = "Ada Student / Google Cloud Platform Intern" @cat = "Hamlet" @previous_jobs = [ "tutor", "auditor", "tax data management consultant" ] end def feed(food) raise ArgumentError unless food.gluten_free? puts "Thanks! I'm putting cheese on this #{food}..." end def talk subjects = [ "coding", "behavioral economics", "The Bachelor", "gluten free beer" ] puts "Let's talk about #{subjects.sample}!" end end