diff --git a/04 - Array Cardio Day 1/index-FINISHED.html b/04 - Array Cardio Day 1/index-FINISHED.html index 850a61a7d9..80006d3f8b 100644 --- a/04 - Array Cardio Day 1/index-FINISHED.html +++ b/04 - Array Cardio Day 1/index-FINISHED.html @@ -30,7 +30,7 @@ console.table(fifteen); // Array.prototype.map() - // 2. Give us an array of the inventory first and last names + // 2. Give us an array of the inventor first and last names const fullNames = inventors.map(inventor => `${inventor.first} ${inventor.last}`); console.log(fullNames);