names = [] puts "Enter the names to be sorted (^D to end)" while name = gets names << name.chomp.upcase end puts "The sorted list of names is:" puts names.sort