```javascript
function scrapeGoogleDocs() {
// Define the URL of the Google Docs file to be scraped
var docUrl = "https://docs.google.com/document/d/DOC_ID";
// Get the contents of the Google Docs file
var doc = DocumentApp.openByUrl(docUrl);
var body = doc.getBody();
var paragraphs = body.getParagraphs();
// Get the Google Sheets file and the active sheet
var sheet = SpreadsheetApp.getActiveSpreadsheet().getActiveSheet();
// Loop through the paragraphs and import them into Google Sheets
for (var i = 0; i < paragraphs.length; i++) {
var paragraph = paragraphs[i].getText();
sheet.getRange(i + 1, 1).setValue(paragraph);
}
}
```