fs.read(fd, buffer, offset, length, position, callback)
fd -> file descriptor returned by fs.open() method
buffer -> this is the buffer the data will be written to
offset -> offset in buffer to start writing at
length -> integer specifying number of bytes to read
position -> an integer specifying where to begin reading from the file
callback -> call back function that gets params (err, bytesRead, buffer)