Skip to content

Commit ac6fdec

Browse files
committed
Updating arrays instruction
1 parent 7cbcb08 commit ac6fdec

1 file changed

Lines changed: 4 additions & 2 deletions

File tree

assignments/arrays.js

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,8 +62,10 @@ let inventory = [{"id":1,"car_make":"Lincoln","car_model":"Navigator","car_year"
6262
// }
6363

6464
// ==== Challenge 1 ====
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 that is by logging the car's year, make, and model in the console.
66-
console.log();
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*` );
67+
68+
6769

6870
// ==== Challenge 2 ====
6971
// The dealer needs the information on the last car in their inventory. What is the make and model of the last car in the inventory? Log the make and model into the console.

0 commit comments

Comments
 (0)