diff --git a/challenges/02-javascript-algorithms-and-data-structures/intermediate-algorithm-scripting.json b/challenges/02-javascript-algorithms-and-data-structures/intermediate-algorithm-scripting.json index 3ada8ca0e0..c74a107b56 100644 --- a/challenges/02-javascript-algorithms-and-data-structures/intermediate-algorithm-scripting.json +++ b/challenges/02-javascript-algorithms-and-data-structures/intermediate-algorithm-scripting.json @@ -1277,6 +1277,10 @@ ], "challengeSeed": [ "var Person = function(firstAndLast) {", + " // Complete the method below and implement the others similarly", + " this.getFullName = function() {", + " return \"\";", + " };", " return firstAndLast;", "};", "",