diff --git a/exercises/04-list-styling/README.md b/exercises/04-list-styling/README.md
index 6a9cb5d..282b6e3 100644
--- a/exercises/04-list-styling/README.md
+++ b/exercises/04-list-styling/README.md
@@ -4,7 +4,7 @@ tutorial: "https://www.youtube.com/watch?v=i7UegJUGnRs"
# `04` List styling
-In the front end, we often have to list items, and the way to do that is with `
` tags, for unordered/bulleted lists, and `` tags for ordered/numbered lists.
+When working in the front end, we often have to create item lists. We can do that using either `` or `` tags! You can use the `` tags for unordered/bulleted lists and the `` tags for ordered/numbered lists.
We have CSS control over what these lists look like, what bullets or numbers they use, etc.