input inside while read loop

Hi all

Does anyone have a script that will allow me to stop inside a while read loop.
I want to pause the loop until a enter is pressed.

e.g.

While read line
do
echo something
if LINECOUNT > 40
then
read ENTER?"PRESS ENTER TO CONT..."
fi
done < /tmp/myfile

read ENTER?"PRESS ENTER TO CONT..." </dev/tty 2>/dev/tty

Thank you

Based on the input of the this, how can I break out of the loop ?

use 'break' - or am I missing something?