diff --git a/curriculum/challenges/english/03-front-end-libraries/sass/use-each-to-map-over-items-in-a-list.english.md b/curriculum/challenges/english/03-front-end-libraries/sass/use-each-to-map-over-items-in-a-list.english.md index 452ca02813..6d44dd6f09 100644 --- a/curriculum/challenges/english/03-front-end-libraries/sass/use-each-to-map-over-items-in-a-list.english.md +++ b/curriculum/challenges/english/03-front-end-libraries/sass/use-each-to-map-over-items-in-a-list.english.md @@ -72,8 +72,48 @@ tests: ## Solution
+ +The solution requires using the $color variable twice: once for the class name and once for setting the background color. You can use either the list or map data type. +### List Data type ```js -// solution required + + +
+
+
``` + +### Map Data type +```js + + +
+
+
+``` + +