find with wild card [solved]

Can somebody help me with the following syntax? I want to find all
files that end with *.arc

 
SUFFIX=".arc"
find /tmp -name "\*$SUFFIX" -print 2>/dev/null

---------- Post updated at 03:45 PM ---------- Previous update was at 03:41 PM ----------

got it thanks

 
-name "*${SUFFIX}"