{% if translations is defined %}
{% for translation in translations %}
{{ translation.word1 }}
{% set correctAnswer = translation.word2 %}
{% if randomtranslations is defined %}
{% set otherTranslations = [correctAnswer] %}
{% for randomtranslation in randomtranslations %}
{% if randomtranslation.word2 != correctAnswer and otherTranslations|length <= 3 %}
{% set otherTranslations = otherTranslations|merge([randomtranslation.word2]) %}
{% endif %}
{% endfor %}
{% endif %}
{% endfor %}
{% endif %}
{% if submitted %}
{% if isCorrect %}