That could be done with an add-on that reads the xf_snog_forms_answers table and populates the page.
It would need to read the posid (for the form ID) and the questionid (for the proper question). Something like..
Code:
$answerValues = [];
$finder = \XF::finder('Snog\Forms:Answers');
$answers = $finder->where('posid', <form ID>)->where('questionid', <question ID>)->fetch();
foreach ($answers as $answer)
{
$answerValues[] = $answer->answer;
}
And use $answerValues to populate the page.
But now that's bordering on me supporting the table.