You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: assignments/arrays.js
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -63,7 +63,7 @@ let inventory = [{"id":1,"car_make":"Lincoln","car_model":"Navigator","car_year"
63
63
64
64
// ==== Challenge 1 ====
65
65
// The dealer can't recall the information for a car with an id of 33 on his lot. Help the dealer find out which car has an id of 33 by logging the car's year, make, and model in the console log provided to you below:
66
-
console.log(`Car 33 is a *car year goes here* *car make goes here* *car model goes here*`);
66
+
console.log(`Car 33 is a ${inventory[32].car_year}${inventory[32].car_make}${inventory[32].car_model}`);
0 commit comments