A line in the .env file reads PORT=3000. After loading it, what is typeof process.env.PORT?// .env // PORT=3000 require('dotenv').config(); console.log(typeof process.env.PORT);