I am writing a list of questions:
\begin{enumerate}
\item This is a question.
\item This is another one.
\item This one is a hard one, I want to add an asterisk to the label.
\item This one is another ordinary question.
\end{enumerate}
On the third entry, I want an asterisk in front of the label number. A naive approach would be this:
\begin{enumerate}
\item This is a question.
\item This is another one.
\item[*3.] This one is a hard one, I want to add an asterisk to the label.
\item This one is another ordinary question.
\end{enumerate}
I would expect the output to look like this:
...
...
*3. ...
- ...
However the output is this:
...
...
*3. ...
- ...
Is there a way to do this?

