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