Node.js - Error Handling Patterns
Find the mistake in this Promise error handling:
fetchData()
.then(data => process(data))
.catch(() => console.log('Error:', error));