A pot
Rue
A pot
Primrose
A pot
Rye
A pot
Rosemary
A pot
Rose
A pot
ChristmasRose
A pot
Rice
A pot
RoseOfSharon
123456
let garden = [
	"Rue", "Primrose", "Rye", 
	"Rosemary", "Rose", 
	"Christmas Rose", "Rice", 
	"Rose-of-Sharon"
];
123456
for  (const plant of garden) {
if (plant.match(//i) {
fertilize(plant);
}
}
Lesson 14 / 42

Lesson task •

Fertilize plants which name 1) consists of one word, 2) starts with "r" and ends with "e"

Revision

Let's revise the previous lessons