Changed
Get an Apple, a Banana and a Cherry.
to
Get an Green, a Yellow and a Red.
Sub Array_Multiple_Terms()
Dim oRng As Word.Range
Dim oProduct As Variant ' declare some variant
' Each product has its properties - Loop through each array 1 at a time
oProduct1 = Array("Apple", "Green", "20")
oProduct2 = Array("Banana", "Yellow", "30")
oProduct3 = Array("Cherry", "Red", "50")
oProduct = Array(oProduct1, oProduct2, oProduct3)
For Each oP In oProduct
Set oRng = ActiveDocument.Range
With oRng.Find
Do While .Execute(FindText:=oP(0), MatchWholeWord:=True)
oRng.Text = oP(1)
oRng.Collapse 0
Loop
End With
Next oP
Set oRng = Nothing
End Sub