random (num) {
      for (let index = 0; index < num; index++) {
        const n = Math.floor(Math.random() * this.products.length)
        this.newArray.push(this.products[n])
        this.products.splice(n, 1)
      }
      return this.newArray + ''
    }