I'm wondering how to show the original enumerating instead of alpha inside the list. enumitem package is included.
\documentclass{article}
\usepackage{enumitem}
\begin{document}
\begin{enumerate}[label=(\alph*)]
\item The first item
\begin{enumerate}[label*=\arabic*.]
\item Nested item 1
\item Nested item 2
\end{enumerate}
\item The second item
\item The third etc \ldots
\end{enumerate}
\end{document}
What the code gives:
What I want to achieve:
Am I missing something? Thanks in advance.



*doing after\alphand\arabic? – Fibo Kowalsky Nov 14 '18 at 21:54enumeratelabels, in order to prevent the code using\alphand\arabicdirectly. – Nov 15 '18 at 16:35