SQL Querying Tables Project #3 - Apostrophe

I’m trying to add this song as the exercise is asking us to put in more tracks into the database. I am putting the MJ song, “I Just Can’t Stop Loving You” as part of the ‘Bad’ Album. The apostrophe interferes with the text quotations. Any idea how to remove the interference?
insert into tracks(id, title, album_id) values ((select id from artists where name = ‘Michael Jackson’),‘I Just Can’t Stop Loving You’, (select id from albums where name = ‘Bad’));