From 55b9569c5001dc2914539b971ee066a92a82c1e4 Mon Sep 17 00:00:00 2001 From: MANISH-GIRI Date: Mon, 7 Nov 2016 15:01:17 -0500 Subject: [PATCH] Add note about order of array elements in Diff Two Arrays --- .../intermediate-bonfires.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/seed/challenges/01-front-end-development-certification/intermediate-bonfires.json b/seed/challenges/01-front-end-development-certification/intermediate-bonfires.json index ce4893de55..4554bca57a 100644 --- a/seed/challenges/01-front-end-development-certification/intermediate-bonfires.json +++ b/seed/challenges/01-front-end-development-certification/intermediate-bonfires.json @@ -66,7 +66,8 @@ "title": "Diff Two Arrays", "description": [ "Compare two arrays and return a new array with any items only found in one of the two given arrays, but not both. In other words, return the symmetric difference of the two arrays.", - "Remember to use Read-Search-Ask if you get stuck. Try to pair program. Write your own code." + "Remember to use Read-Search-Ask if you get stuck. Try to pair program. Write your own code.", + "Note
You can return the array with its elements in any order." ], "challengeSeed": [ "function diffArray(arr1, arr2) {",