From a098b836c5c4763f8480fa0a666d7d765d3c80cd Mon Sep 17 00:00:00 2001 From: LoptrSir <91218015+LoptrSir@users.noreply.github.com> Date: Mon, 21 Mar 2022 11:12:38 -0700 Subject: [PATCH] 11 solution --- 11_getTheTitles/getTheTitles.js | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/11_getTheTitles/getTheTitles.js b/11_getTheTitles/getTheTitles.js index 74b04df..c64f87b 100644 --- a/11_getTheTitles/getTheTitles.js +++ b/11_getTheTitles/getTheTitles.js @@ -1,6 +1,7 @@ -const getTheTitles = function() { - +const getTheTitles = function(dict) { + result = Object.keys(dict); + console.log(result); + return result; }; -// Do not edit below this line -module.exports = getTheTitles; +