Strikeout numbers from an enumerated list

#enumeratelistsstrikeout

I would like to have a simple enumerated list like

\begin{enumerate}
   \item First item
   \item Second item
\end{enumerate}

where I strike through "(1)" and "(2)" but not the text "First item" and "Second item". Would that be possible?

Update: could I have only (1) stroke-through but not (2)?

Best Answer

You can do this with the ulem and the enumitem package:

\documentclass{article}

\usepackage{ulem}
\usepackage{enumitem}

\begin{document}
    
    \begin{enumerate}[label=\sout{(\arabic*)}]
        \item  First item
        \item Second item
    \end{enumerate}

\end{document}

enter image description here