0
Rubyで非常に新しく、配列から無作為に選択した色を使用しようとしています 赤、青、白とピンクの4色の配列を持っています(動作しない)Rubyの文字列のリストからランダムな出力を得るには
@colors =["blue", "orange", "red", "white"]
#random_color = colors[rand(0..(colors.length - 1))]
random_color = rand(0..(@colors.length - 1))
print random_color
puts "Your choice: >"
guess = $stdin.gets.chomp
guesses = 0
while guess != random_color && guesses < 3
puts "Try again. You have to go out"
guesses += 1
print random_color
puts "Your choice: >"
guess = $stdin.gets.chomp
end