puts "Answer Yes, No" static_answer = nil loop do static_answer = gets.chomp if %w(Yes YES Y y No NO N n).include?(static_answer) break else puts "You selected #{static_answer}, You must enter either YES or NO only" end end puts "You selected #{static_answer}."