Final answer:
A simple Python program that uses the print function to display 'hello' and 'darling' on two separate lines would achieve the student's request.
Step-by-step explanation:
To write a program that will print 'hello' and 'darling' on two lines, you can use any programming language. Below is an example code written in Python, which is a popular programming language for beginners due to its readability and simple syntax:
# Python program to print 'hello' and 'darling' on two lines
print("hello")
print("darling")
When this program is run, it will display the words 'hello' and 'darling' each on a separate line, as specified.