We're a place where coders share, stay up-to-date and grow their careers.
My solution in js
const murmur = (times) => Array(times).fill() .map((value, index) => `${index+1} sheep...`) .join(' ');
My solution in js