Thats not possible out of the box. But depending on the time you want to spent on that feature you can built such type of report by yourself. You can print variable data to the screen by pre- and suffixing variables with an hashtag ‘#’, f.e. #v_7#. That would print the content of v_7 to the screen. thats possible on every page in the questionnaire, so on the end page. So you can do something like this:
Gender: #v_1#
Age: #v_2#
Height: #v_3#
According to the wiki you should be able to access the actual question assigned to the variable like this: #v_7|label# but that did not work for me in my tests.
Things getting a bit more tricky when you have multiple choice questions or want to format the output in a table or something similar.
A table example would be
<table>
<tr><th>Question</th><th>Your answer</th></tr>
<tr><td>Gender</td><td>#v_1#</td></tr>
</table>
You can print multiple choice answers the same way like normal variables…
<table>
<tr><th>Question</th><th>Your answer</th></tr>
<tr><td>Hobbys</td><td>#v_5#, #v_6#, #v_7#, #v_8#</td></tr>
</table>
The disadvantage of the above example is, that if the choices v_7 and v_8 are not checked, the separating comma will be printed anyway, which looks strange (f.e.: “mountain biking, badminton,,”)… easiest way is to print stuff like that without html and javascript knowledge is to strip the separating characters and separate just by space (f.e.: “mountain biking badminton “)