Having trouble with this code…
print “What’s your first name?”
first_name = gets.chomp
print “What’s your last name?”
last_name = gets.chomp
print “What’s your city?”
city_name = gets.chomp
print “What’s your state?”
state_name = gets.chomp
I enter in all prompts, but once I run the code I get a message asking if I declared a variable named city? Which it looks like I did…what am I doing wrong?