Code QuizBeginner

Building a Basic Prompt

Learn why an instruction and its input need clear separation in a prompt.

Codejavascript
const instruction = "Summarize the following text.";
const input = "The quick brown fox jumps over the lazy dog repeatedly all day.";

const prompt = instruction + input;

console.log(prompt);

What is the bug in how this prompt is constructed?