[Tex/LaTex] How to remove the references from table of contents

bibliographiestable of contents

I have the following code:

\documentclass[a4paper,12pt]{article}
\usepackage[margin=2cm]{geometry} %showframe
\begin{document}
\tableofcontents
\newpage
\section*{Abstract}
\section{Introduction}
\newpage
\bibliographystyle{apacite}
\bibliography{references}
\end{document}

And when I create the table of contents it adds the "References" in the TOC, how can I remove this to not be included in TOC? So far I have tried something like

\bibliography*{references}

Best Answer

The answer to this questions is the following command:

\usepackage[notocbib]{apacite}