From 95f09aa45c0dcc78dfe0d838564d13282aad4d2b Mon Sep 17 00:00:00 2001 From: Abigail Edwards <63216164+aedward8@users.noreply.github.com> Date: Fri, 16 Apr 2021 09:36:28 -0700 Subject: [PATCH] added "s" to each element in the adult array I am not sure if the "s" was left out of each input on purpose or not. I think it was an accident since the tests wants the strings with "s" --- challenges/16a.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/challenges/16a.js b/challenges/16a.js index 20ba0ce..a80494e 100644 --- a/challenges/16a.js +++ b/challenges/16a.js @@ -1,6 +1,6 @@ // Create a function that will print a statement about animals and their young. The function animals() should accept two array arguments of equal length, so that calling: // -// animals(["dog", "cat", "horse"], ["pups", "kittens", "foals"]); +// animals(["dogs", "cats", "horses"], ["pups", "kittens", "foals"]); // // should return this string: // @@ -8,7 +8,7 @@ // // Example 1: // -// animals(["dog", "cat", "horse"], ["pups", "kittens", "foals"]); +// animals(["dogs", "cats", "horses"], ["pups", "kittens", "foals"]); // // ---> // @@ -16,7 +16,7 @@ // // Example 2: // -// animals(["cow", "eagle", "deer"], ["calves", "chicks", "fawns"]); +// animals(["cows", "eagles", "deers"], ["calves", "chicks", "fawns"]); // // ---> //