Múltiple opción a google form desde appscript

function createQuiz() {
  // Create a new Google Form
  const form = FormApp.create('AI in the Education World Quiz');
  
  // Convert the form into a quiz
  form.setIsQuiz(true);

  // Add questions and correct answers
  const questions = [
    {
      title: '1. What is a common benefit of using AI in education?',
      choices: [
        'A. Reducing teacher workload',
        'B. Eliminating the need for human teachers',
        'C. Ensuring all students have the same learning style',
        'D. Reducing the importance of assessment'
      ],
      correctAnswer: 'A. Reducing teacher workload'
    },
    {
      title: '2. What is a major ethical consideration when using AI in education?',
      choices: [
        'A. Ensuring AI systems are transparent and explainable',
        'B. Focusing on the aesthetics of the AI interface',
        'C. Prioritizing the development speed of AI tools',
        'D. Making sure AI replaces human interaction'
      ],
      correctAnswer: 'A. Ensuring AI systems are transparent and explainable'
    },
    {
      title: '3. Which of the following is an example of AI-powered adaptive learning technology?',
      choices: [
        'A. Online discussion forums',
        'B. Learning Management Systems (LMS)',
        'C. Intelligent Tutoring Systems (ITS)',
        'D. Digital textbooks'
      ],
      correctAnswer: 'C. Intelligent Tutoring Systems (ITS)'
    },
    {
      title: '4. What is a primary concern regarding data privacy in AI-enhanced education?',
      choices: [
        'A. Ensuring all AI algorithms are open-source',
        'B. Protecting student personal information',
        'C. Requiring students to use only one device for learning',
        'D. Limiting the use of cloud-based storage'
      ],
      correctAnswer: 'B. Protecting student personal information'
    },
    {
      title: '5. How can AI help improve the accessibility of educational resources?',
      choices: [
        'A. By increasing the cost of resources',
        'B. By translating resources into different languages',
        'C. By limiting the availability of resources',
        'D. By creating resources for only one learning style'
      ],
      correctAnswer: 'B. By translating resources into different languages'
    }
  ];

  // Add multiple choice questions to the form
  questions.forEach(function (question) {
    const item = form.addMultipleChoiceItem()
      .setTitle(question.title)
      .setRequired(true);
    
    // Set correct answer for the quiz
    const choices = question.choices.map(choice => {
      return item.createChoice(choice, choice === question.correctAnswer);
    });
    item.setChoices(choices);
    
    // Set correct answer feedback
    const feedbackBuilder = FormApp.createFeedback().setText('Correct!').build();
    if (item.getFeedbackForCorrect) {
      item.setFeedbackForCorrect(feedbackBuilder);
    }
  });
}

El anterior era el appscript, para el prompt usar

Genera 12 preguntas múltiple opción sobre X. Utiliza este formato para que lo incluya en un appscript, recuerda no incluir la coma final en la última pregunta: 
 {
      title: '1. What is a common benefit of using AI in education?',
      choices: [
        'A. Reducing teacher workload',
        'B. Eliminating the need for human teachers',
        'C. Ensuring all students have the same learning style',
        'D. Reducing the importance of assessment'
      ],
      correctAnswer: 'A. Reducing teacher workload'
    },