If we have created following function, which of these function calls will raise an error?

numAndStr(3, "Blind Mice");numAndStr(12, "Days of Christmas");numAndStr("Cloud", 9);numAndStr("District", 9);

Good job! The order of our parameters when we declare a function must match when we call it!

Close but not right! The order of our parameters when we declare a function must match when we call it!