array = ["Hello", "there", "AAA", 1, 2, 3]index_value = 0puts array[index_value] #prints "Hello"index_value = 1puts array[index_value] #prints "there"index_value = 2puts array[index_value] #prints "AAA"