From 8aac7f227a1c226ac0a70fb8aca65fb74e17b69d Mon Sep 17 00:00:00 2001 From: Darren Joy Date: Fri, 16 Dec 2016 04:09:36 -0500 Subject: [PATCH] Update instructions for Stand in Line Challenge --- .../basic-javascript.json | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/challenges/01-front-end-development-certification/basic-javascript.json b/challenges/01-front-end-development-certification/basic-javascript.json index d38171ca53..8b4a93c1c4 100644 --- a/challenges/01-front-end-development-certification/basic-javascript.json +++ b/challenges/01-front-end-development-certification/basic-javascript.json @@ -2744,7 +2744,9 @@ "title": "Stand in Line", "description": [ "In Computer Science a queue is an abstract Data Structure where items are kept in order. New items can be added at the back of the queue and old items are taken off from the front of the queue.", - "Write a function nextInLine which takes an array (arr) and a number (item) as arguments. Add the number to the end of the array, then remove the first element of array. The nextInLine function should then return the element that was removed." + "Write a function nextInLine which takes an array (arr) and a number (item) as arguments.", + "Add the number to the end of the array, then remove the first element of the array.", + "The nextInLine function should then return the element that was removed." ], "releasedOn": "January 1, 2016", "head": [