Hello @Pascal_Burda and welcome to the Make Community!
For this I believe you will need an Iterator on your Hits array.
You can then follow the Iterator with a Google Sheets Add a Row module.
This will run the Add a Row module once for each Hit, so that’d be 10 times.
The more efficient way to update it would be to Aggregate the results of the Iterate into a values object using a Text Aggregator, which can be used with a Google Sheets Make an API call module against the batchUpdate endpoint. This would use a single Operation instead of 10, but it’s more difficult to implement and prone to errors if there are certain characters in the data.
You can see more posts related to using batchUpdate here or here.