I need help creating an exponential kind of data with rising number and rising date

Hi, I’m frankly new to using mockaroo. I mainly use JavaScript. I want to create a json data in mockaroo where I get a start date and a given number of value. For every next object, the date day increase and the numbers increase by a positive number. Is this possible with the options available? How do you formulate it?
e.g.

[
   { date: 01/01/20, melon: 100, genie: 100, youtube: 100, facebook: 100, instagram: 100 },
   { date: 02/01/20, melon: 110, genie: 110, youtube: 110, facebook: 110, instagram: 110 },
   { date: 03/01/20, melon: 100, genie: 120, youtube: 120, facebook: 120, instagram: 120 },
...
   { date: 08/08/21, melon: 100, genie: 300, youtube: 300, facebook: 300, instagram: 300 },
]