TypeError: Promise Resolver Undefined no es una función

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

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