Help me in solving DTRETR301 problem

My issue

SELECT Employees.name, Employees.salary, Departments.dept_name
FROM Employees
INNER JOIN Departments
ON Employees.department_id = Departments.dept_id;

My code

-- your code goes here
SELECT Employees.name,Employees.dept_id, Employees.salary, Departments.dept_name,Departments.location
FROM Employees
INNER JOIN Departments
ON Employees.dept_id = Departments.dept_id;

Learning course: Database Management System
Problem Link: https://www.codechef.com/learn/course/sit-dbms/DTRETR03/problems/DTRETR301