Puppeteer, is chromium based by default.
If you wish to use chrome instead you have to specify the executable path through the executablePath launch parameter.
But to be honest, most of the time, there is no point to do so.
let browser = await puppeteer.launch({
executablePath: `/path/to/Chrome`,
//...
});