const makeStickers = (countOfDetails, robotPart) => Array.from({length: countOfDetails}, (_, i) => `${robotPart} detail #${++i}`) alert(makeStickers(3, 'Body'));