From 582d17fd649be29725a16b3c452ad013271e65be Mon Sep 17 00:00:00 2001 From: Rob Simpson Date: Thu, 8 Dec 2016 21:32:59 -0500 Subject: [PATCH] Quick word change in comment --- 04 - Array Cardio Day 1/index-FINISHED.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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);