f2 = {
if (seqQ === null) return md`**Select a question to see a visualization.**`;
let str = survey.serveQuestion(seqQ).code;
let func = new Function(
"remixSheet",
"survey",
"return " + str.replace("sheet.", "remixSheet.")
);
let ret = func(remixSheet, survey);
return ret;
}