What is the purpose of the subquery in the following query?
SELECT Name FROM Students WHERE Age = (SELECT MAX(Age) FROM Students)
A) To return all the students’ names.
B) To return the names of students with the highest age.
C) To return the names of students with the lowest age.