Welcome to the Treehouse Community
The Treehouse Community is a meeting place for developers, designers, and programmers of all backgrounds and skill levels to get support. Collaborate here on code errors or bugs that you need feedback on, or asking for an extra set of eyes on your latest project. Join thousands of Treehouse students and alumni in the community today. (Note: Only Treehouse students can comment or ask questions, but non-students are welcome to browse our conversations.)
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and a supportive community. Start your free trial today.

Matt Steves
1,954 PointsProblem in modifying the amount of screams the monster has
I have tried multiple times, and have followed the instructions throughly, yet it throws a NameError.
Help much appreciated.
class Monster
attr_reader :name, :actions
def initialize(name)
@name = name
@actions = {
screams: 0,
scares: 0,
runs: 0,
hides: 0
}
end
def scream(&block)
@actions[screams] += 1
print "#{name} screams! "
end
end
monster = Monster.new("Fluffy")
monster.scream { puts "BOO!" }

Samuel Webb
25,370 Points@sitkibagdat can you move your answer to the Add an Answer section so you can get credit for having the correct answer.

sitkibagdat
27,311 Points@samuelwebb As you wish :)
1 Answer

sitkibagdat
27,311 PointsYou should use symbol in @actions[:screams] += 1

Samuel Webb
25,370 PointsPoints, points get all the points :)
sitkibagdat
27,311 Pointssitkibagdat
27,311 PointsYou should use symbol in
@actions[:screams] += 1