Script add NAT addresses

Need help with such kind of script witch add some addresses in dst-nat

I write this:

$$$:for e from 2 to 62 do={
  /ip firewall nat add chain=dstnat src-address=(192.168.130. . $e) action=dst-nat \
    to-addresses=159.148.51.66 to-ports=80 comment="" disabled=yes\
}

There I made mistake? :question:
before I alsoo made such script to add addresses in rules and it works fine

for e from 2 to 62 do={
/ip firewall nat add chain=dstnat src-address=(“192.168.130.” . $e) action=dst-nat
to-addresses=159.148.51.66 to-ports=80 comment=“” disabled=yes
}

Use quotes around the text.

Sam

Thanks!

I found my error!
I put before the script this “$$$”