Can anyone please help me how to draw the arrow in red?

\documentclass{article}
\pagestyle{empty} % do not print page number
\usepackage{tikz}
\usetikzlibrary{shapes.geometric, arrows}
\pagecolor{white}
\tikzset {
startstop/.style={
circle,
rounded corners,
minimum width=1cm,
minimum height=1cm,
text centered,
draw=black!80,
fill=white!100
},
interconnect/.style={
circle,
minimum width=0.25cm,
minimum height=0.25cm,
draw=black!80,
fill=white!100
},
process/.style={
rectangle,
minimum width=3cm,
minimum height=1cm,
text centered,
text width=3cm,
draw=black!80,
fill=white!100
},
decision/.style={
diamond,
minimum width=3cm,
minimum height=1cm,
text centered,
draw=black!80,
fill=white!100
},
% RECTANGULAR CONNECTOR ----------------------------------------------------------------------------
% from: https://tex.stackexchange.com/questions/50780/arrows-at-right-angles-on-a-tikzpicture-matrix
descr/.style={
fill=white,
inner sep=2.5pt
},
connector/.style={
-latex
},
rectangle connector/.style={
connector,
to path={(\tikztostart) -- ++(#1,0pt) \tikztonodes |- (\tikztotarget) },
pos=0.5
},
rectangle connector/.default=-2cm,
straight connector/.style={
connector,
to path=--(\tikztotarget) \tikztonodes
},
% --------------------------------------------------------------------------------------------------
arrow/.style={thick,->,>=stealth}
}
\begin{document}
\begin{tikzpicture}[node distance=2cm]
\node (START) [startstop] {Start};
\node (SETUP) [process, below of=START, yshift=0.0cm] {setup()};
\node (CON1) [interconnect, below of=SETUP, yshift=0.25cm] {};
\node (GEN-QUEST) [process, below of=CON1, align=center, yshift=0.25cm] {Generate\new question};
\node (CON2) [interconnect, below of=GEN-QUEST, yshift=0.25cm] {};
\node (INPUT) [process, below of=CON2, align=center, yshift=0.25cm] {Get user\input};
\node (LED) [process, below of=INPUT, align=center] {Turn LEDs on/off\accordingly};
\node (CHECK-ANSWER) [decision, below of=LED, align=center, yshift=-0.75cm] {Correct\answer?};
\draw [arrow] (START) -- (SETUP);
\draw [arrow] (SETUP) -- (CON1);
\draw [arrow] (CON1) -- (GEN-QUEST);
\draw [arrow] (GEN-QUEST) -- (CON2);
\draw [arrow] (CON2) -- (INPUT);
\draw [arrow] (INPUT) -- (LED);
\draw [arrow] (LED) -- (CHECK-ANSWER);
\draw [rectangle connector=3.5cm] (CHECK-ANSWER) to node[descr] {no} (CON2);
\end{tikzpicture}
\end{document}

