A do-while loop

I have never seen this type of loop,may I have some help please???

iLoveTheBeatles which accepts a number as a parameter. The body of the function should create a variable that stores an empty array. Then, implement a do-while loop inside the function that adds “I love the Beatles!” to the empty array. Then the loop should increment the number passed in as a parameter. The condition of the loop should check to see that the parameter number is less than 15. The function should return the array with the strings “I love the Beatles!”.

04

Where’s your while part? It helps if you post the whole code you have done to see where there might be problems.