TypeError: Promise Resolver Undefined n'est pas une fonction

// Instead of this
const promise = new Promise()

// do this
const promise = new Promise(() => {})  
Frightened Flatworm