I use the ACM format to print arXiv papers with the following example
\documentclass[manuscript,screen]{acmart}
\begin{document}
\section{Introduction}
Text~\cite{Mnih13}
\bibliographystyle{ACM-Reference-Format}
\bibliography{sample-base}
\end{document}
\endinput
And the entry is
@article{Mnih13,
author = {V. Mnih and K. Kavukcuoglu and D. Silver and A. Graves and I. Antonoglou and D. Wierstra and M. Riedmiller},
title = {Playing Atari with Deep Reinforcement Learning},
year = {2013},
eprint = {arXiv:1312.5602},
}
Now, what I see in the output is
V. Mnih, K. Kavukcuoglu, D. Silver, A. Graves, I. Antonoglou, D. Wierstra, and M. Riedmiller. 2013. Playing Atari with Deep Reinforcement Learning.(2013). arXiv:arXiv:1312.56021
So, I see two 2013 and two arXiv. Is that normal?
