I am trying to paste several ranges into a word doc from excel.

here is a snipit of code:

Code:
Range("A71:D87").Select
    With Selection
          Selection.Copy
                wrdDoc.Range.Paste
                End With
  
    Range("A90:D106").Select
    With Selection
          Selection.Copy
                wrdDoc.Range.Paste
                End With
It pastes to word but every range that is copied is pasted over the prior.