Place your JavaScript function definition here:
const headsOrTails = () => { if (Math.random() < 0.5) { return 'Heads' } return 'Tails' }
Run