<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<script>
$(document).ready(function() {
// On the review page
$("body#page-mod-quiz-review .que").each(function() {
var state = $(this).find(".state").text();
// Remove correct answers
if (state == 'Correct') {
$(this).remove();
}
});
});
</script>