JS

JavaScript ES6 - template literals es6

5.

What is the output of the following code?

const speed = 'quick'; 
console.log(`The ${speed} brown fox jumps over the lazy dog.`)

Error message.

The "quick" brown fox jumps over the lazy dog.

The ${speed} brown fox jumps over the lazy dog.

The quick brown fox jumps over the lazy dog.