I am using exam class. I have an environment called solution which when I run Latex it appears as Solution with a capital letter S. Sometimes I'd like to show two different answers for the same question, so I want to call them Solution 1 and Solution 2. These two answers should have the same environment like Solution. How can I do this? BTW, I run the following code when I want to create a solution:
\begin{solution}
bla bla
\end{solution}
Here is a sample code:
\documentclass[a4paper, 12pt, addpoints, answers]{exam}
\usepackage{amssymb,amsmath,amsthm}
\begin{document}
\begin{questions}
\question[2] bla ...
\begin{solution}
bla...
\end{solution}
\end{questions}
\end{document}
