Depending on how much "non-sequential" your numbers are, and how much you need a quick & dirty solution instead of something with polish and automatism, you might get along with \addtocounter and some ad-hoc-ery involving the enumitem package:
\documentclass{article}
\usepackage{enumitem}
\begin{document}
\begin{enumerate}[label=52.\arabic*,start=2]
\item Answer % 52.2
\addtocounter{enumi}{6}
\item Answer % 52.9
\end{enumerate}
\begin{enumerate}[label=53.\arabic*,start=13]
\item Answer % 53.13
\end{enumerate}
\end{document}
With a bit more work, you could make the page number (52, 53) into a counter of its own and wrap it all into a re-useable environment definition, but I think this gives you the idea of it all.
enumerateenvironment (that is, in this instance,itemizeandenumeratecan be interchanged). Also, from a terminology perspective, these are environments. – Werner Sep 29 '11 at 01:40{description}seems to be more appropriate. You can also increase the label width e.g. by using theenumitempackage. – Tobi Jan 25 '15 at 11:34{itemize}doesn't save any labels by default … maybe you ask a new question referring to this on ;-) – Tobi Oct 11 '21 at 22:02