mysql_query() question

I have an array called rightStuff that houses a bunch of numbers, like so:

$rightStuff = ("1","3","5");

Now, i’m trying to write a mysql query that would only picks out rows, where its ‘engine’ field value is found in the array…

 
mysql_query("SELECT * FROM table WHERE engine = ... ");

How should I achieve something like that ?