diff --git a/challenges/html5-and-css.json b/challenges/html5-and-css.json
index f4a6cd5d7b..99a0753ad0 100644
--- a/challenges/html5-and-css.json
+++ b/challenges/html5-and-css.json
@@ -3702,7 +3702,7 @@
"Let's replace the hex code in our body
element's background color with the RGB value for black: rgb(0, 0, 0)
"
],
"tests": [
- "assert($(\"body\").css(\"background-color\") === \"rgb(0, 0, 0)\", 'Give your body
element the background-color
of black.')",
+ "assert($(\"body\").css(\"background-color\") === \"rgb(0, 0, 0)\", 'Your body
element should have a black background.')",
"assert(editor.match(/rgb\\s*\\(\\s*0\\s*,\\s*0\\s*,\\s*0\\s*\\)/ig), 'Use rgb
to give your body
element the background-color
of black. For example body { color: rgb(0, 0, 0); }
.')"
],
"challengeSeed": [
@@ -3736,7 +3736,7 @@
"Change the body
element's background color from the RGB value for black to the rgb
value for white: rgb(255, 255, 255)
"
],
"tests": [
- "assert($(\"body\").css(\"background-color\") === \"rgb(255, 255, 255)\", 'Give your body
element the background-color
of white.')",
+ "assert($(\"body\").css(\"background-color\") === \"rgb(255, 255, 255)\", 'Your body
should have a white background.')",
"assert(editor.match(/rgb\\s*\\(\\s*255\\s*,\\s*255\\s*,\\s*255\\s*\\)/ig), 'Use rgb
to give your body
element the background-color
of white. For example body { background-color: rgb(255, 255 , 255); }
.')"
],
"challengeSeed": [
@@ -3770,7 +3770,7 @@
"Change the body
element's background color to the RGB value red: rgb(255, 0, 0)
"
],
"tests": [
- "assert($(\"body\").css(\"background-color\") === \"rgb(255, 0, 0)\", 'Give your body
element the background-color
of red.')",
+ "assert($(\"body\").css(\"background-color\") === \"rgb(255, 0, 0)\", 'Your body
should have a red background.')",
"assert(editor.match(/rgb\\s*\\(\\s*255\\s*,\\s*0\\s*,\\s*0\\s*\\)/ig), 'Use rgb
to give your body
element the background-color
of red. For example body { background-color: rgb(255, 0, 0); }
.')"
],
"challengeSeed": [
@@ -3802,7 +3802,7 @@
"Now change the body
element's background color to the rgb
value green: rgb(0, 255, 0)
"
],
"tests": [
- "assert($(\"body\").css(\"background-color\") === \"rgb(0, 255, 0)\", 'Give your body
element the background-color
of green.')",
+ "assert($(\"body\").css(\"background-color\") === \"rgb(0, 255, 0)\", 'Your body
element should have a green background.')",
"assert(editor.match(/rgb\\s*\\(\\s*0\\s*,\\s*255\\s*,\\s*0\\s*\\)/ig), 'Use rgb
to give your body
element the background-color
of green. For example body { background-color: rgb(0, 255, 0); }
.')"
],
"challengeSeed": [
@@ -3834,7 +3834,7 @@
"Change the body
element's background color to the RGB value blue: rgb(0, 0, 255)
"
],
"tests": [
- "assert($(\"body\").css(\"background-color\") === \"rgb(0, 0, 255)\", 'Give your body
element the background-color of blue.')",
+ "assert($(\"body\").css(\"background-color\") === \"rgb(0, 0, 255)\", 'Your body
element should have a blue background.')",
"assert(editor.match(/rgb\\s*\\(\\s*0\\s*,\\s*0\\s*,\\s*255\\s*\\)/ig), 'Use rgb
to give your body
element the background-color
of blue. For example body { background-color: rgb(0, 0, 255); }
.')"
],
"challengeSeed": [
@@ -3867,7 +3867,7 @@
"Change the body
element's background color to the RGB value orange: rgb(255, 165, 0)
"
],
"tests": [
- "assert($(\"body\").css(\"background-color\") === \"rgb(255, 165, 0)\", 'Give your body
element the background-color of orange.')",
+ "assert($(\"body\").css(\"background-color\") === \"rgb(255, 165, 0)\", 'Your body
element should have an orange background.')",
"assert(editor.match(/rgb\\s*\\(\\s*255\\s*,\\s*165\\s*,\\s*0\\s*\\)/ig), 'Use rgb
to give your body
element the background-color
of orange. For example body { background-color: rgb(255, 165, 0); }
.')"
],
"challengeSeed": [
@@ -3900,7 +3900,7 @@
"Change the body
element's background color to the RGB value for gray: rgb(128, 128, 128)
"
],
"tests": [
- "assert($(\"body\").css(\"background-color\") === \"rgb(128, 128, 128)\", 'Give your body
element the background-color of gray.')",
+ "assert($(\"body\").css(\"background-color\") === \"rgb(128, 128, 128)\", 'Your body
element should have a gray background.')",
"assert(editor.match(/rgb\\s*\\(\\s*128\\s*,\\s*128\\s*,\\s*128\\s*\\)/ig), 'Use rgb
to give your body
element the background-color
of gray. For example body { background-color: rgb(128, 128, 128); }
.')"
],
"challengeSeed": [