I really don't understand this for loop:
output = ', '.join([q.question_text for q in latest_question_list])
I understand what for q in latest_question_list
is doing. But im used to then having a code block underneath, not in front of the loop.
I don't understand how exactly this works or what it is even called to search it lol.