Syntax error

Hi guys i’m Jhon from Italy, please help me, in game gnomesequencer say there’s an error in line 3 “Unexpected symbol near ‘?’”
how can i fix it ?

local _, Sequences = ... -- Don't touch this

Sequences[“PreteDps”] = {
StepFunction = [[
limit = limit or 1
if step == limit then
limit = limit % #macros + 1
step = 1
else
step = step % #macros + 1
end
]],
PreMacro = [[
/targetenemy [noharm][dead]
/cast [nostance:1] Forma d’ombra
]],
“/cast Piaga Divoratrice”,
“/cast Detonazione Mentale”,
“/cast Parola d’Ombra: Morte”,
“/cast Aculeo Mentale”,
”/cast Spirito d’Ombra”,
ck = [[
/startattack
/use [combat]13
/use [combat]14
]],
}

Try this code below:


Sequences['PreteDps'] = {
StepFunction = [[
        limit = limit or 1
        if step == limit then
                limit = limit % #macros + 1
                step = 1
        else
                step = step % #macros + 1
        end
]],
PreMacro = [[
/targetenemy [noharm][dead]
/cast [nostance:1] Forma d’ombra
]],
	"/cast Piaga Divoratrice",
	"/cast Detonazione Mentale",
	"/cast Parola d’Ombra: Morte",
	"/cast Aculeo Mentale",
	"/cast Spirito d’Ombra",
PostMacro = [[
/startattack
/use [combat]13
/use [combat]14
]],
}