diff --git a/curriculum/challenges/english/05-apis-and-microservices/mongodb-and-mongoose/create-many-records-with-model.create.english.md b/curriculum/challenges/english/05-apis-and-microservices/mongodb-and-mongoose/create-many-records-with-model.create.english.md index 86463c4eb6..d6fdfea64a 100644 --- a/curriculum/challenges/english/05-apis-and-microservices/mongodb-and-mongoose/create-many-records-with-model.create.english.md +++ b/curriculum/challenges/english/05-apis-and-microservices/mongodb-and-mongoose/create-many-records-with-model.create.english.md @@ -13,7 +13,8 @@ Sometimes you need to create many instances of your models, e.g. when seeding a ## Instructions
-Create many people with Model.create(), using the function argument arrayOfPeople. +Modify the createManyPeople function to create many people using Model.create() with the argument arrayOfPeople. +Note: You can reuse the model you instantiated in the previous exercise.
## Tests