I need to print a box very similar to that created by the \makeemptybox{\stretch{1}} command in exam.cls except that I would like to add dotted lines inside the box. Specifically, I would like to add 12 dotted lines first and then fill the rest of the box with empty space (see image below).
Here is what I have so far:
\documentclass[10pt,a4paper,addpoints]{exam}
\begin{document}
\begin{questions}
\question[5] In a class of 30 students, 18 have a dog, 20 have a cat and 3 have neither. A student is selected at random. What is the probability that this student has both a cat and a dog?
\makeemptybox{\stretch{1}}
\newpage
\question[6] A pencil case contains 5 faulty and 7 working pens. A boy and then a girl each need to take a pen.
\begin{parts}
\part Determine the probability that two faulty pens are chosen.
\part Determine the probability that at least one faulty pen is chosen.
\part Given that exactly one faulty pen is chosen, what is the probability that the girl chose it?
\end{parts}
\makeemptybox{\stretch{1}}
\newpage
\end{questions}
\end{document}
Any ideas? I am new to LaTeX so any advice would be helpful! Thank you in advance.

