function rateMyDay(decimal) { const ratingInWords = decimal > 0.5 ? 'great!' : 'eh.'; return [[decimal, ratingInWords], [decimal, ratingInWords]]; }