An alternative approach, which doesn't require a header.
Sub Module()
Application.ScreenUpdating = False
With Range("A1:A10")
.Copy .Offset(, 3)
.Offset(, 3).RemoveDuplicates Columns:=1, Header:=xlNo
End With
Application.ScreenUpdating = True
End Sub