QuizAnswerMap
type QuizAnswerMap = Record<string, string | string[]>;
User's answers to a quiz, keyed by question ID. Single-answer questions store a string; multi-select stores a string array.
type QuizAnswerMap = Record<string, string | string[]>;
User's answers to a quiz, keyed by question ID. Single-answer questions store a string; multi-select stores a string array.