I've got a list of words in column B that I'm trying make a very simple change. But the macro that I recorded is not achieving the desired effect.

In col. B I've got the following:
Summer Days
Ice Cream
Fall colors
Breezy Winds

Actually the list goes on & on.... much longer but that's a good sample.
I need it change to:

"Summer Days" move
"Ice Cream" move
"Fall colors" move
"Breezy Winds" move

So I recorded a macro thinking this will be a very simple problem to solve. But the macro that i recorded gave me this:

Sub WrapInQuotes()
'
' WrapInQuotes Macro
'
'
    ActiveCell.FormulaR1C1 = """Summer Days"" move"
    Range("B2").Select
    ActiveCell.FormulaR1C1 = """Ice Cream"" move"
    Range("B3").Select
    ActiveCell.FormulaR1C1 = """Fall Colors"" move"
    Range("B4").Select
    ActiveCell.FormulaR1C1 = """Breezy Winds"" move"
    Range("B5").Select
End Sub
Any ideas?