From 56a2b1672cb0479c75644edefc77bdf75b9be862 Mon Sep 17 00:00:00 2001 From: Stuart Mosquera Date: Wed, 13 Aug 2025 05:54:05 -0300 Subject: [PATCH] fix(curriculum): add new test for 'contacts' in profile lookup lab (#61789) --- .../lab-profile-lookup/5688e62ea601b2482ff8422b.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/curriculum/challenges/english/25-front-end-development/lab-profile-lookup/5688e62ea601b2482ff8422b.md b/curriculum/challenges/english/25-front-end-development/lab-profile-lookup/5688e62ea601b2482ff8422b.md index aef1c65b0fa..3360bfced7d 100644 --- a/curriculum/challenges/english/25-front-end-development/lab-profile-lookup/5688e62ea601b2482ff8422b.md +++ b/curriculum/challenges/english/25-front-end-development/lab-profile-lookup/5688e62ea601b2482ff8422b.md @@ -54,6 +54,12 @@ contacts = [ # --hints-- +The `contacts` array should still be present in the global scope. Reset the lesson to recover it if you deleted it. + +```js +assert.isArray(contacts); +``` + You should have a function named `lookUpProfile`. ```js