Fills a list with a given value.
This function generates a change (except when called on a variable).
list.fill(item)
Returns the filled list.
This code creates a list with five nil values
range(5).fill(nil);
Return value in JSON format
[null, null, null, null, null]