coin function
Return a random value from a set of two strings i.e the head and tail of a coin.
Returns: A string of either head or tail.
Implementation
String coin() {
Set<String> coinValues = {'Head', 'Tail'};
return coinValues.toList()[Random().nextInt(coinValues.length)];
}