So maybe explain what you want to do, including the selecting A to E, which normally should not be required.
Some examples:
Range("F1:J1").Value = Range("A1:E1").Value
or
Cells(1, 1).Resize(, 5).Copy Cells(1, 6)
or
Cells(1, 6).Resize(, 5).Value = Cells(1, 1).Resize(,5).Value
and a lot other possibilities.