Statement Ruby

array = ['cherry', 'strawberry', 'orange']
for index in (0...array.length)
  puts "At position #{index}: #{array[index]}"
end