diff --git a/Week3/MAKEME.md b/Week3/MAKEME.md index 8f88e9e15..f910a2a8b 100644 --- a/Week3/MAKEME.md +++ b/Week3/MAKEME.md @@ -104,7 +104,8 @@ let favoriteAnimals = ["blowfish", "capricorn", "giraffe"]; 8. How do you get the third element from that list? -9. Change the function `vehicle` to use the list of question 7. So that `vehicle("green", 3, 1)` prints "a green new bike". +9. Change the function `vehicle` to use the list of question 7. So that `vehicle("green", 3, 1)` prints "a green new bike". + > Hint, it should use the `code` to get the value from the list. So `vehicle("green", 2, 1)` prints "a green new caravan". 10. Use the list of vehicles to write an advertisement. So that it prints something like: `"Amazing Joe's Garage, we service cars, motorbikes, caravans and bikes."`. (Hint: use a `for` loop.)