Correct Answer: ATo design a schema that effectively supports an unknown number of comments and articles using Firestore, you should store each comment in a subcollection of the article. This approach leverages Firestore's hierarchical structure, where collections contain documents, and documents can contain subcollections. By storing comments in a subcollection of the corresponding article, you ensure scalability and efficient querying. It allows you to easily retrieve all comments associated with a specific article without the constraints of document size limitations, providing a flexible and scalable solution.