I’m trying to generate a social security number by a date of birth and a random number.
Day Month Year Random number
01-31 01-12 - 1234
The output should look like this:
01121967-1234
The first two integers is a day with leading 0, the third and fourth is a month 01 to 12 with a leading zero in case of it being less than 10, the next four a year, then a dash and four random digits.
How would I do that in Mockaroo?