I don't understand the + sign when it comes to RegulairExpressions

Tell us what’s happening:

I’m getting confused about, what i am excatlly suppose to do here.
I tried looking at the hint but, it basicly told the same as the lesson.
Your code so far


let difficultSpelling = "Mississippi";
let myRegex = /Mis+is+ppi/gi; // Change this line
let result = difficultSpelling.match(myRegex);

Your browser information:

User Agent is: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_3) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.5 Safari/605.1.15.

Challenge: Match Characters that Occur One or More Times

Link to the challenge:

You are not supposed to make a regular expression to match the word “Misssissippi” (which this doesn’t do anyway, because you’re missing an “i”). That would make result be an array of one item containing the word “Mississippi”. You are only supposed to write a regular expression that matches one or more "s"s. Read the instructions and examples again carefully.

Thank you that did sollute it for me :cat: