array = ['cherry', 'strawberry', 'orange']index = 0until index == array.length puts "At position #{index}: #{array[index]}" index += 1end