Naming variables is hard, but here is one hint - if a value involves a unit, always have this unit as part of the variable name. Example:

const delay = 2000; // ??? const delaySeconds = 2000; // awesome