diff --git a/seed/challenges/01-front-end-development-certification/advanced-bonfires.json b/seed/challenges/01-front-end-development-certification/advanced-bonfires.json index 35f949ac9b..93b2d54e5f 100644 --- a/seed/challenges/01-front-end-development-certification/advanced-bonfires.json +++ b/seed/challenges/01-front-end-development-certification/advanced-bonfires.json @@ -397,6 +397,10 @@ ], "challengeSeed": [ "var Person = function(firstAndLast) {", + " // Complete the method below and implement the others similarly", + " this.getFullName = function() {", + " return \"\";", + " };", " return firstAndLast;", "};", "",