Which expression is a valid BigInt literal representing the integer forty-two?
Explanation
The n suffix marks an integer literal as a BigInt, making 42n valid. A decimal fraction with that suffix is invalid because BigInt represents integers rather than fractional numeric values.