Help me in solving JS43 problem

My issue

Delete multiple variables??

My code

// Delete the following variables
var taskDescription = "This is a task";
var taskDeadLike = "2043-07-13";
var taskDone = false;

const Task = {
    description: "This is a task",
    deadline: "2023-07-13",
    done: false

    
    
    // Complete the Object Declaration witthe given value
    
};


Learning course: Web development using JavaScript
Problem Link: Making Data Organized Using Objects Practice Problem in Web development using JavaScript - CodeChef