How to add this line?
Current code:
\documentclass{article}
\usepackage{graphicx} % Required for inserting images
\usepackage{fp, tikz}
\usetikzlibrary{arrows,shapes,backgrounds,patterns,fadings,matrix,arrows,calc,
intersections,decorations.markings,
positioning,external,arrows.meta}
\tikzset{
block/.style = {draw, rectangle,
minimum height=1cm,
minimum width=2cm},
input/.style = {coordinate,node distance=1cm},
output/.style = {coordinate,node distance=6cm},
arrow/.style={draw, -latex,node distance=2cm},
pinstyle/.style = {pin edge={latex-, black,node distance=2cm}},
sum/.style = {draw, circle, node distance=1cm},
}
\begin{document}
\begin{tikzpicture}[auto, >=latex', transform shape,font={\sffamily \small}]
\node [draw=black,
minimum width=1.6cm,
minimum height=1.2cm,
align=center] (1) {1};
\node [draw=black,
minimum width=1.6cm,
minimum height=1.2cm,
align=center,
right=0.6cm of 1] (2) {2};
\node [draw=black,
minimum width=1.6cm,
minimum height=1.2cm,
align=center,
right=0.6cm of 2] (3) {3};
\draw[->,line width=0.25mm] (1.east) -- (2.west);
\draw[->,line width=0.25mm] (2.east) -- (3.west);
\end{tikzpicture}
\end{document}



