exportconststoreSplittedText = ({ text, storage, }) => {
storage.textArr = text.split(' ');
if (storage.textArr.length !== storage.origArr.length)
thrownewError('The number of words in the source string is not equal to the processed one. Please, report the issue.');
};