What is the output of the code?
print "What's your first name?"
first_name=gets.chomp
a=first_name.capitalize
first_name.capitalize!
print "What's your last name?"
last_name=gets.chomp
b=last_name.capitalize
last_name.capitalize!
puts "My name is #{first_name} #{last_name}"1.Amil Jones
2.What’s your first name? amil What’s your last name? jones My name is Amil Jones
3.My name is Amil Jones
4.None of the mentioned