Array Ruby

array = ["Hello", "there", "AAA", 1, 2, 3]
array[1] = "here"
p array
array = ["Hello", "there", "AAA", 1, 2, 3]
array[1, 1] = "here"
p array